Skip to content

Commit

Permalink
Fix virtual environment creation when bootstrapping build environment…
Browse files Browse the repository at this point in the history
…s with a standalone Python (#505)

Per
#381 (comment)
this should stop the build bootsrapping script from crashing when
running the build with a standalone Python distribution (which was..
really annoying me).
  • Loading branch information
zanieb authored Jan 28, 2025
1 parent fc29abe commit 8dc1b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def bootstrap():
BUILD.mkdir(exist_ok=True)

venv.create(VENV, with_pip=True)
venv.create(VENV, with_pip=True, symlinks=True)

subprocess.run([str(PIP), "install", "-r", str(REQUIREMENTS)], check=True)

Expand Down

0 comments on commit 8dc1b9c

Please sign in to comment.