From a98d36778d569a91ee61f6375c4856233cacbd26 Mon Sep 17 00:00:00 2001 From: Mark Tiedemann Date: Mon, 8 Apr 2019 23:43:16 +0200 Subject: [PATCH] ps: Use -OutFile instead of -Out (#55) -Out doesn't work in Windows 8. Fixes #54 --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index e6bfeb7..58e6a28 100644 --- a/install.ps1 +++ b/install.ps1 @@ -75,7 +75,7 @@ if (!(Test-Path $BinDir)) { New-Item $BinDir -ItemType Directory | Out-Null } -Invoke-WebRequest $DenoUri -Out $DenoZip +Invoke-WebRequest $DenoUri -OutFile $DenoZip if ($IsWindows) { Expand-Archive $DenoZip -Destination $BinDir -Force