diff options
author | 2024-10-03 19:50:12 +0100 | |
---|---|---|
committer | 2024-10-03 22:06:39 +0100 | |
commit | f726695b1a1d99b5c61ea09bd3a364103a08d7bf (patch) | |
tree | e413a3b771da56fbb6516d02920c8061612c3d03 /scripts/install_eval_deps.sh | |
parent | Correct spelling in test cases (diff) |
Update all references to /lang to /snekbin
Diffstat (limited to 'scripts/install_eval_deps.sh')
-rw-r--r-- | scripts/install_eval_deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install_eval_deps.sh b/scripts/install_eval_deps.sh index 8fa5316..b57a654 100644 --- a/scripts/install_eval_deps.sh +++ b/scripts/install_eval_deps.sh @@ -1,5 +1,5 @@ set -euo pipefail export PYTHONUSERBASE=/snekbox/user_base -find /lang/python -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0I{} bash -c \ +find /snekbin/python -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0I{} bash -c \ '{}/bin/python -m pip install --user -U -r requirements/eval-deps.pip' \; |