Skip to content

Commit

Permalink
dev-tooling: fix build-runtime on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwitch committed Feb 27, 2024
1 parent 37a7953 commit ca6bcbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,8 @@ def download_angle():

shutil.copytree(f"scripts/files/angle/include", "src/ext/angle/include", dirs_exist_ok=True)
shutil.copytree(f"scripts/files/angle/bin", "build/bin", dirs_exist_ok=True)
shutil.copytree(f"scripts/files/angle/lib", "build/lib", dirs_exist_ok=True)
if platform.system() == "Windows":
shutil.copytree(f"scripts/files/angle/lib", "build/lib", dirs_exist_ok=True)

def build_libcurl():
if platform.system() == "Windows":
Expand Down

0 comments on commit ca6bcbc

Please sign in to comment.