File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ function Add-CoderSignature([string] $path) {
85
85
86
86
function Download-File ([string ] $url , [string ] $outputPath , [string ] $etagFile ) {
87
87
Write-Host " Downloading '$url ' to '$outputPath '"
88
+ # We use `curl.exe` here because `Invoke-WebRequest` is notoriously slow.
88
89
& curl.exe `
89
90
-- progress- bar `
90
91
-- show-error `
@@ -169,8 +170,7 @@ $wintunDllDest = Join-Path $vpnFilesPath "wintun.dll"
169
170
Copy-Item $wintunDllSrc $wintunDllDest
170
171
171
172
# Download the mutagen binary from our bucket for this platform if we don't have
172
- # it yet (or it's different). We use `curl.exe` here because `Invoke-WebRequest`
173
- # is notoriously slow.
173
+ # it yet (or it's different).
174
174
$mutagenVersion = " v0.18.1"
175
175
$mutagenSrcPath = Join-Path $repoRoot " scripts\files\mutagen-windows-$ ( $goArch ) .exe"
176
176
$mutagenSrcUrl = " https://storage.googleapis.com/coder-desktop/mutagen/$ ( $mutagenVersion ) /mutagen-windows-$ ( $goArch ) .exe"
You can’t perform that action at this time.
0 commit comments