diff options
author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-01-25 21:40:56 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-25 13:40:56 -0500 |
commit | 34dbd315930b4c2544b587d1c0fbb16c3173bf45 (patch) | |
tree | 5aeb91e6a56f8d87ee3d06aaf143eaef7eb14d94 | |
parent | d0dc4deaad858babcb612b181986db254db64dfa (diff) |
Use shell installer in docs (#1574)
-rw-r--r-- | Docs.md | 4 | ||||
-rw-r--r-- | website/index.html | 5 |
2 files changed, 5 insertions, 4 deletions
@@ -16,10 +16,10 @@ has no external dependencies. [deno_install](https://github.com/denoland/deno_install) provides convenience scripts to download and install the binary. -Using Python: +Using Shell: ``` -curl -L https://deno.land/x/install/install.py | python +curl -L https://deno.land/x/install/install.sh | sh ``` Or using PowerShell: diff --git a/website/index.html b/website/index.html index 922052bc7..036d2f01d 100644 --- a/website/index.html +++ b/website/index.html @@ -1,4 +1,4 @@ -<!-- Copyright 2018 the Deno authors. All rights reserved. MIT license. --> +<!-- Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. --> <!DOCTYPE html> <html> <head> @@ -47,8 +47,9 @@ <h2>Getting started</h2> <p>Install Deno into ~/.deno/bin + <pre> -curl -L https://deno.land/x/install/install.py | python +curl -L https://deno.land/x/install/install.sh | sh export PATH=$HOME/.deno/bin:$PATH </pre> |