16 lines
309 B
Bash
Executable File
16 lines
309 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
./download.sh "https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz"
|
|
|
|
./pixi init || true
|
|
./pixi install --all
|
|
|
|
git add .gitattributes .gitignore pixi.lock pixi.toml
|
|
git commit -m"automatic commit after install"
|
|
git push
|
|
|
|
|