26 lines
503 B
Bash
Executable File
26 lines
503 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
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
|
|
|
|
chmod +x ./pixi
|
|
./pixi init || true
|
|
./pixi install --all
|
|
|
|
#git config user.name "GFA AutoDeploy"
|
|
#git config user.email "gfa-autodeploy@psi.ch"
|
|
|
|
#git add .gitattributes .gitignore pixi.lock pixi.toml
|
|
#git commit -m"automatic commit after install"
|
|
#git push
|
|
|
|
|