diff options
author | 2024-10-03 19:50:12 +0100 | |
---|---|---|
committer | 2024-10-03 22:06:39 +0100 | |
commit | f726695b1a1d99b5c61ea09bd3a364103a08d7bf (patch) | |
tree | e413a3b771da56fbb6516d02920c8061612c3d03 /scripts/build_python.sh | |
parent | Correct spelling in test cases (diff) |
Update all references to /lang to /snekbin
Diffstat (limited to 'scripts/build_python.sh')
-rwxr-xr-x | scripts/build_python.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build_python.sh b/scripts/build_python.sh index 1e6d423..77f50ab 100755 --- a/scripts/build_python.sh +++ b/scripts/build_python.sh @@ -4,14 +4,14 @@ shopt -s inherit_errexit py_version="${1}" -# Install Python interpreter under e.g. /lang/python/3.11/ (no patch version). +# Install Python interpreter under e.g. /snekbin/python/3.11/ (no patch version). "${PYENV_ROOT}/plugins/python-build/bin/python-build" \ "${py_version}" \ - "/lang/python/${py_version%[-.]*}" -"/lang/python/${py_version%[-.]*}/bin/python" -m pip install -U pip + "/snekbin/python/${py_version%[-.]*}" +"/snekbin/python/${py_version%[-.]*}/bin/python" -m pip install -U pip # Clean up some unnecessary files to reduce image size bloat. -find /lang/python/ -depth \ +find /snekbin/python/ -depth \ \( \ \( -type d -a \( \ -name test -o -name tests -o -name idle_test \ |