aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build_python.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build_python.sh')
-rwxr-xr-xscripts/build_python.sh8
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 \