diff options
author | 2022-07-20 11:39:44 +0400 | |
---|---|---|
committer | 2022-07-20 11:51:21 +0400 | |
commit | 5c620959bb08e8abc4c8061db488c08e6e1cb50a (patch) | |
tree | 86cd88a44db576eeabc5eaa1e95bcac5b672558a | |
parent | 08bff8e09035dff15cb0e8333e9a5f1c9b10ea0d (diff) | |
download | bun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.tar.gz bun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.tar.zst bun-5c620959bb08e8abc4c8061db488c08e6e1cb50a.zip |
fix install script colors
-rw-r--r-- | src/cli/install.sh | 10 |
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" + |