Update PowerShell install command (#20)

- Replaced `-OutFile` with `-out` alias for brevity
- Removed single-quotes of file name for brevity
- Replaced Unix-style `./` with PowerShell-style `.\`
This commit is contained in:
Mark Tiedemann 2019-01-05 16:20:50 +01:00 committed by Ryan Dahl
parent b7bcc662e2
commit 92110a9ee1

View file

@ -33,5 +33,5 @@ curl -L https://deno.land/x/install/install.py | python - v0.2.0
**Install with PowerShell:**
```
iwr https://deno.land/x/install/install.ps1 -Outfile 'install.ps1'; ./install.ps1 v0.2.0
iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.0
```