diff options
author | 2021-10-29 15:39:36 -0700 | |
---|---|---|
committer | 2021-10-29 15:39:36 -0700 | |
commit | 07bf3eb1e91d8d7b0246727ea6ec25722e17e1bf (patch) | |
tree | c83576afd1a073df13ca0d2a36e9fd9c21831fc1 | |
parent | 61d436c29ddc81b92820112d302d0af66ea43cbd (diff) | |
parent | 237e672e705a73e5d50f2b25a31e01ea5f772ac1 (diff) | |
download | bun-07bf3eb1e91d8d7b0246727ea6ec25722e17e1bf.tar.gz bun-07bf3eb1e91d8d7b0246727ea6ec25722e17e1bf.tar.zst bun-07bf3eb1e91d8d7b0246727ea6ec25722e17e1bf.zip |
Merge pull request #41 from mikeroelens/mikeroelens/fix-shell-install-command
-rw-r--r-- | src/cli/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/install.sh b/src/cli/install.sh index 9c92bb745..3e487f448 100644 --- a/src/cli/install.sh +++ b/src/cli/install.sh @@ -99,7 +99,7 @@ elif test $(basename $SHELL) == "zsh"; then echo "" echo "Manually add the directory to your \$HOME/.zshrc (or similar)" echo "" - echo -e " $BWhite export BUN_INSTALL=\"$bun_install$Color_Off" + echo -e " $BWhite export BUN_INSTALL=\"$bun_install\"$Color_Off" echo -e " $BWhite export PATH=\"\$BUN_INSTALL/bin:\$PATH\"$Color_Off" else echo "" |