diff options
author | 2023-06-26 21:25:33 -0400 | |
---|---|---|
committer | 2023-06-26 18:25:33 -0700 | |
commit | 7a0b1656c735ea634a7e27cb6f73254cc4411a91 (patch) | |
tree | cfea5144909087cf222ff8d14bfd265a2e26cd9f /src/cli/install.sh | |
parent | 28f27f733b3db072944156694301651b09b7696b (diff) | |
download | bun-7a0b1656c735ea634a7e27cb6f73254cc4411a91.tar.gz bun-7a0b1656c735ea634a7e27cb6f73254cc4411a91.tar.zst bun-7a0b1656c735ea634a7e27cb6f73254cc4411a91.zip |
docs: add troubleshooting section to installation page (#3389)
* docs: add troubleshooting section to installation page
* Add note for unzip
* Update msg in install.sh
---------
Co-authored-by: Colin McDonnell <colinmcd94@gmail.com>
Diffstat (limited to '')
-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 ffb70b6cb..782e8592e 100644 --- a/src/cli/install.sh +++ b/src/cli/install.sh @@ -50,7 +50,7 @@ success() { } command -v unzip >/dev/null || - error 'unzip is required to install bun (see: https://bun.sh/docs/installation)' + error 'unzip is required to install bun' if [[ $# -gt 2 ]]; then error 'Too many arguments, only 2 are allowed. The first can be a specific tag of bun to install. (e.g. "bun-v0.1.4") The second can be a build variant of bun to install. (e.g. "debug-info")' |