diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-17 07:51:06 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-17 09:02:31 +0800 |
commit | 3597d6859cacf0ef3ef935ad7d4e98d4df4a15ff (patch) | |
tree | 09e5e14cd15bdcaf42e951d620a96eda162354d9 | |
parent | d083f7271b11d87ddba90869d2bcd2cf312e77af (diff) |
Use short install links.
-rw-r--r-- | Docs.md | 4 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -19,13 +19,13 @@ scripts to download and install the binary. Using Python: ``` -curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python +curl -L https://deno.land/x/install/install.py | python ``` Or using PowerShell: ```powershell -iex (iwr https://raw.githubusercontent.com/denoland/deno_install/master/install.ps1) +iex (iwr https://deno.land/x/install/install.ps1) ``` _Note: Depending on your security settings, you may have to run @@ -55,13 +55,13 @@ With Python: ``` -curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python +curl -L https://deno.land/x/install/install.py | python ``` With PowerShell: ```powershell -iex (iwr https://raw.githubusercontent.com/denoland/deno_install/master/install.ps1) +iex (iwr https://deno.land/x/install/install.ps1) ``` _Note: Depending on your security settings, you may have to run |