Skip to content

Commit

Permalink
fix: add space between bracket and url (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Mar 7, 2023
1 parent f9e6ac8 commit 82dcc3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set -e

if ! command -v unzip >/dev/null; then
echo "Error: unzip is required to install Deno (see: https://github.com/denoland/deno_install#unzip-is-required)." 1>&2
echo "Error: unzip is required to install Deno (see: https://github.com/denoland/deno_install#unzip-is-required )." 1>&2
exit 1
fi

Expand All @@ -16,7 +16,7 @@ else
"Darwin x86_64") target="x86_64-apple-darwin" ;;
"Darwin arm64") target="aarch64-apple-darwin" ;;
"Linux aarch64")
echo "Error: Official Deno builds for Linux aarch64 are not available. (https://github.com/denoland/deno/issues/1846)" 1>&2
echo "Error: Official Deno builds for Linux aarch64 are not available. (see: https://github.com/denoland/deno/issues/1846 )" 1>&2
exit 1
;;
*) target="x86_64-unknown-linux-gnu" ;;
Expand Down

0 comments on commit 82dcc3f

Please sign in to comment.