From f6a35c3ffe9ae181f07e8ecfa7b3fe26217f6688 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 11 Apr 2025 16:32:11 +0200 Subject: [PATCH] setup.sh should be runnable from any working dir --- autodeploy/setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/autodeploy/setup.sh b/autodeploy/setup.sh index 9b6532d..f5e73a5 100755 --- a/autodeploy/setup.sh +++ b/autodeploy/setup.sh @@ -3,7 +3,11 @@ set -euo pipefail -./download.sh "https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz" +URL="https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz" + + +SCRIPT_PATH=$(dirname "$0") +"$SCRIPT_PATH/download.sh" "$URL" export CONDA_OVERRIDE_GLIBC=2.28