Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 815a884

Browse files
committed
This should be working, y u no work
1 parent 876e3bc commit 815a884

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

appveyor.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ install:
3131
Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent
3232
} else {
3333
git submodule deinit script
34-
$destination = Join-Path $env:appveyor_build_folder 'lib\deps.zip'
35-
Invoke-WebRequest "https://ghfvs-installer.github.com/dependencies/deps.zip" -OutFile $destination
36-
Set-Location Join-Path $env:appveyor_build_folder 'lib'
37-
&'7z' x $destination
34+
$destdir = Join-Path $env:appveyor_build_folder 'lib'
35+
$destfile = Join-Path $destdir 'deps.zip'
36+
Set-Location $destdir
37+
Invoke-WebRequest "https://ghfvs-installer.github.com/dependencies/deps.zip" -OutFile $destfile
38+
&'7z' -bb3 x 'deps.zip'
3839
Set-Location $env:appveyor_build_folder
3940
}
4041

0 commit comments

Comments
 (0)