diff options
author | Mark Tiedemann <www.marktiedemann@gmail.com> | 2019-02-19 00:19:43 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-18 18:19:43 -0500 |
commit | a1de28dbef5718ddf03ebce5c3c29f31a8631992 (patch) | |
tree | 02f8bc2978a6b425396b9a396eecfbfa3f0cd6f8 | |
parent | 55b2f0195f97a3d728690e4789fd955fedd1a5ba (diff) |
Update installation documentation (Fixes #1786) (#1802)
-rw-r--r-- | Releases.md | 2 | ||||
-rw-r--r-- | website/index.html | 11 | ||||
-rw-r--r-- | website/manual.md | 16 |
3 files changed, 10 insertions, 19 deletions
diff --git a/Releases.md b/Releases.md index 57e5b53a7..144112408 100644 --- a/Releases.md +++ b/Releases.md @@ -3,7 +3,7 @@ Binary releases can be downloaded manually at https://github.com/denoland/deno/releases -We also have a one-line install commands at +We also have one-line install commands at https://github.com/denoland/deno_install ### v0.2.11 / 2019.02.08 diff --git a/website/index.html b/website/index.html index f05f2e575..349ca36e9 100644 --- a/website/index.html +++ b/website/index.html @@ -89,12 +89,13 @@ <h2 id="install">Install <a href="#install">#</a></h2> - <p>Mac or Linux</p> - <pre>curl -fL <a + <p>Using Shell:</p> + <pre>curl -fsSL <a href="https://github.com/denoland/deno_install/blob/master/install.sh">https://deno.land/x/install/install.sh</a> | sh</pre> - <p>Windows (PowerShell)</p> - <pre>iex (iwr <a -href="https://github.com/denoland/deno_install/blob/master/install.ps1">https://deno.land/x/install/install.ps1</a>)</pre> + <p>Or using PowerShell:</p> + <pre>iwr <a +href="https://github.com/denoland/deno_install/blob/master/install.ps1">https://deno.land/x/install/install.ps1</a> | iex</pre> + <p>See <a href="https://github.com/denoland/deno_install">deno_install</a> for more installation options.</p> <h2 id="example">Example <a href="#example">#</a></h2> diff --git a/website/manual.md b/website/manual.md index ec4ced45e..0f8072eca 100644 --- a/website/manual.md +++ b/website/manual.md @@ -82,24 +82,14 @@ scripts to download and install the binary. Using Shell: -``` -curl -fL https://deno.land/x/install/install.sh | sh +```sh +curl -fsSL https://deno.land/x/install/install.sh | sh ``` Or using PowerShell: ```powershell -iex (iwr https://deno.land/x/install/install.ps1) -``` - -_Note: Depending on your security settings, you may have to run -`Set-ExecutionPolicy RemoteSigned -Scope CurrentUser` first to allow downloaded -scripts to be executed._ - -With [Scoop](https://scoop.sh/): - -``` -scoop install deno +iwr https://deno.land/x/install/install.ps1 | iex ``` Deno can also be installed manually, by downloading a tarball or zip file at |