pup-py commited on
Commit
c8642c6
·
1 Parent(s): 85f99e4

save curl output and luanch

Browse files
Files changed (1) hide show
  1. pup +3 -1
pup CHANGED
@@ -218,7 +218,9 @@ if [ "$1" == "pixi" ]; then
218
  if [ "$2" == "init" ]; then
219
  # install and init Pixi project in pup's home dir
220
  if ! command -v pixi &> /dev/null; then
221
- curl -fsSL https://pixi.sh/install.sh | sh
 
 
222
  fi
223
  PUPHOME=$(pup home)
224
  if [[ ! -f "$PUPHOME"/pixi.toml ]]; then
 
218
  if [ "$2" == "init" ]; then
219
  # install and init Pixi project in pup's home dir
220
  if ! command -v pixi &> /dev/null; then
221
+ curl -fsSL https://pixi.sh/install.sh -o pixi_install.sh
222
+ # chmod +x ./pixi_install.sh
223
+ ./pixi_install.sh
224
  fi
225
  PUPHOME=$(pup home)
226
  if [[ ! -f "$PUPHOME"/pixi.toml ]]; then