diff options
author | 2021-12-21 01:47:04 -0800 | |
---|---|---|
committer | 2021-12-21 01:47:04 -0800 | |
commit | fe415a30c5004a8045ffd0cf235e0c074b2db9d5 (patch) | |
tree | 55831456ebe0213c3f33d277917c74fbc082013a /src/cli/install.sh | |
parent | 382208e59c1bd1420e51ae9b83e107e21636a401 (diff) | |
download | bun-fe415a30c5004a8045ffd0cf235e0c074b2db9d5.tar.gz bun-fe415a30c5004a8045ffd0cf235e0c074b2db9d5.tar.zst bun-fe415a30c5004a8045ffd0cf235e0c074b2db9d5.zip |
Copy-pastable
Diffstat (limited to 'src/cli/install.sh')
-rw-r--r-- | src/cli/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/install.sh b/src/cli/install.sh index 3ebd1d3ad..c44c1da99 100644 --- a/src/cli/install.sh +++ b/src/cli/install.sh @@ -30,7 +30,7 @@ if test -t 1; then fi if ! command -v unzip >/dev/null; then - echo -e "${Red}error${Color_Off}: unzip is required to install Bun (see: https://github.com/Jarred-Sumner/bun#unzip-is-required)." 1>&2 + echo -e "\n${Red}error${Color_Off}: unzip is required to install Bun (see: https://github.com/Jarred-Sumner/bun#unzip-is-required)." 1>&2 exit 1 fi @@ -162,8 +162,8 @@ else echo "" echo "Manually add the directory to your \$HOME/.bashrc (or similar)" echo "" - echo -e " $BWhiteexport BUN_INSTALL=\"$bun_install\"$Color_Off" - echo -e " $BWhiteexport PATH=\"\$BUN_INSTALL/bin:\$PATH\"$Color_Off" + echo -e " $BWhiteexport export BUN_INSTALL=\"$bun_install\"$Color_Off" + echo -e " $BWhiteexport export PATH=\"\$BUN_INSTALL/bin:\$PATH\"$Color_Off" fi echo "" echo -e "To get started, run" |