diff options
author | 2023-04-16 16:13:08 +0200 | |
---|---|---|
committer | 2023-04-16 07:13:08 -0700 | |
commit | 264f3b91b6124b2f7d82b9160ca1ffaf111c32c0 (patch) | |
tree | 198686e4344df024f41d776582056392b5ed6724 | |
parent | 06dab241efa5bf75a5c5e1d7ad830d2605cdb298 (diff) | |
download | bun-264f3b91b6124b2f7d82b9160ca1ffaf111c32c0.tar.gz bun-264f3b91b6124b2f7d82b9160ca1ffaf111c32c0.tar.zst bun-264f3b91b6124b2f7d82b9160ca1ffaf111c32c0.zip |
fix: replace unknown link with bun docs (#2669)
-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 b3c53e6cd..ffb70b6cb 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://github.com/oven-sh/bun#unzip-is-required)' + error 'unzip is required to install bun (see: https://bun.sh/docs/installation)' 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")' |