Skip to content

Commit

Permalink
Update build_ext.py
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 authored Dec 30, 2024
1 parent c52feba commit 5f5fddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ def build_extension(debug: bool = False, use_temp_dir: bool = False) -> None:
subprocess.run(["cmake", "--build", str(build_temp), *build_args], cwd=TOP_DIR, check=True) # nosec

banner("Step #3: Install")
subprocess.run(["cmake", "--install", "."], cwd=build_temp, check=True) # nosec
# subprocess.run(["cmake", "--install", build_temp], cwd=TOP_DIR, check=True) # nosec
# subprocess.run(["cmake", "--install", "."], cwd=build_temp, check=True) # nosec
subprocess.run(["cmake", "--install", build_temp], cwd=TOP_DIR, check=True) # nosec


if __name__ == "__main__":
Expand Down

0 comments on commit 5f5fddc

Please sign in to comment.