From 92110a9ee174be7bdd79775f21c181fb54132f04 Mon Sep 17 00:00:00 2001 From: Mark Tiedemann Date: Sat, 5 Jan 2019 16:20:50 +0100 Subject: [PATCH] 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 `.\` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4baba58..f2b3c12 100644 --- a/README.md +++ b/README.md @@ -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 ```