From f7103430d65ba2369cd052bee05d9b31f763e325 Mon Sep 17 00:00:00 2001 From: songsenand Date: Sun, 18 Feb 2024 20:41:58 +0800 Subject: [PATCH] build(build.py): build function subprocess.run arg: cwd = --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index d9a9f6d..ad17832 100644 --- a/build.py +++ b/build.py @@ -1,7 +1,7 @@ import warnings import subprocess -res = subprocess.run(["python3", "setup.py", "build_ext", "--inplace"]) +res = subprocess.run(["python3", "setup.py", "build_ext", "--inplace"], cwd="./tdcgal") if res.returncode != 0: warnings.warn(res.stderr.decode()) warnings.warn("Error building toydesigner-cgal")