aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Alexander <alexkuz@gmail.com> 2022-07-20 11:39:44 +0400
committerGravatar Alexander <alexkuz@gmail.com> 2022-07-20 11:51:21 +0400
commit5c620959bb08e8abc4c8061db488c08e6e1cb50a (patch)
tree86cd88a44db576eeabc5eaa1e95bcac5b672558a /src
parent08bff8e09035dff15cb0e8333e9a5f1c9b10ea0d (diff)
downloadbun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.tar.gz
bun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.tar.zst
bun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.zip
fix install script colors
Diffstat (limited to 'src')
-rw-r--r--src/cli/install.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/cli/install.sh b/src/cli/install.sh
index 48ec15660..43f63264c 100644
--- a/src/cli/install.sh
+++ b/src/cli/install.sh
@@ -29,7 +29,7 @@ if [[ -t 1 ]]; then
# Bold
Bold_Green='\033[1;32m' # Bold Green
- Bold_White='\033[1;37m' # Bold White
+ Bold_White='\033[1m' # Bold White
fi
error() {
@@ -205,10 +205,12 @@ zsh)
esac
echo
-echo -e "To get started, run:$Bold_White"
+echo -e "To get started, run:"
+echo
if [[ $refresh_command ]]; then
- echo -e " $refresh_command"
+ echo -e "$Bold_White $refresh_command$Color_Off"
fi
-echo -e " bun --help$Color_Off"
+echo -e " $Bold_White bun --help$Color_Off"
+