Skip to content

Commit

Permalink
fix: linux install script (#737)
Browse files Browse the repository at this point in the history
The linux installer was broken by #692 and fails currently with `bash: line 83: PIXI_NO_PATH_UPDATE: unbound variable`
  • Loading branch information
mariusvniekerk authored Jan 30, 2024
1 parent ed08c83 commit 479c06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ update_shell() {
LINE=$2

# shell update can be suppressed by `PIXI_NO_PATH_UPDATE` env var
[[ ! -z "$PIXI_NO_PATH_UPDATE" ]] && return
[[ -z "${PIXI_NO_PATH_UPDATE-}" ]] && return

# Create the file if it doesn't exist
if [ -f "$FILE" ]; then
Expand Down

0 comments on commit 479c06d

Please sign in to comment.