pup-py commited on
Commit
c9dd632
·
1 Parent(s): 2aff6f3

SHELL=bash

Browse files
Files changed (1) hide show
  1. pup +4 -3
pup CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bash
2
  VERSION="pup v0 @ Apr 1 2024"
3
 
4
 
@@ -220,9 +220,10 @@ if [ "$1" == "pixi" ]; then
220
  if [ "$2" == "init" ]; then
221
  # install and init Pixi project in pup's home dir
222
  if ! command -v pixi &> /dev/null; then
223
- touch $HOME/.bashrc
 
224
  curl -fsSL https://pixi.sh/install.sh | bash
225
- source $HOME/.bashrc
226
  fi
227
  PUPHOME=$(pup home)
228
  if [[ ! -f "$PUPHOME"/pixi.toml ]]; then
 
1
+ #!/usr/bin/bash
2
  VERSION="pup v0 @ Apr 1 2024"
3
 
4
 
 
220
  if [ "$2" == "init" ]; then
221
  # install and init Pixi project in pup's home dir
222
  if ! command -v pixi &> /dev/null; then
223
+ # touch $HOME/.bashrc
224
+ export SHELL=bash
225
  curl -fsSL https://pixi.sh/install.sh | bash
226
+ # source $HOME/.bashrc
227
  fi
228
  PUPHOME=$(pup home)
229
  if [[ ! -f "$PUPHOME"/pixi.toml ]]; then