Skip to content

Commit

Permalink
Use shell installer in docs (denoland#1574)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sharshakov authored and ry committed Jan 25, 2019
1 parent d0dc4de commit 34dbd31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions website/index.html
Original file line number Diff line number Diff line change
@@ -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>
Expand Down Expand Up @@ -47,8 +47,9 @@ <h1>Deno</h1>
<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>

Expand Down

0 comments on commit 34dbd31

Please sign in to comment.