Skip to content

Commit

Permalink
Use shortened URL for install.sh (denoland#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuapp authored Jan 4, 2024
1 parent 284c33e commit 001ec8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deploy/manual/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
<TabItem value="mac" label="macOS" default>

```sh
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

</TabItem>
Expand All @@ -67,7 +67,7 @@ irm https://deno.land/install.ps1 | iex
<TabItem value="linux" label="Linux">

```sh
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions runtime/manual/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
Using Shell:

```shell
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

Using [Homebrew](https://formulae.brew.sh/formula/deno):
Expand Down Expand Up @@ -83,7 +83,7 @@ winget install deno
Using Shell:

```shell
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

Using [Nix](https://nixos.org/download.html):
Expand Down
4 changes: 2 additions & 2 deletions runtime/manual/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ below.
<TabItem value="mac" label="macOS" default>

```sh
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

</TabItem>
Expand All @@ -41,7 +41,7 @@ irm https://deno.land/install.ps1 | iex
<TabItem value="linux" label="Linux">

```sh
curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/install.sh | sh
```

</TabItem>
Expand Down

0 comments on commit 001ec8e

Please sign in to comment.