aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/install_eval_deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install_eval_deps.sh b/scripts/install_eval_deps.sh
index 716d513..8fa5316 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 -exec \
- {}/bin/python -m pip install --user -U -r requirements/eval-deps.pip \;
+find /lang/python -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0I{} bash -c \
+ '{}/bin/python -m pip install --user -U -r requirements/eval-deps.pip' \;