Skip to content

Commit 6320243

Browse files
mpiatkaMartinPulec
authored andcommitted
CI: Fix Win jack download
1 parent 7f397d2 commit 6320243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/Windows/install_jack.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $repo = "jackaudio/jack2-releases"
99
$releases = "https://api.github.com/repos/$repo/releases"
1010
$tag = (Invoke-WebRequest $releases -Headers @{Authorization = "token ${Env:GITHUB_TOKEN}"} | ConvertFrom-Json)[0].tag_name
1111
$download = "https://github.com/$repo/releases/download/$tag/jack2-win64-$tag.exe"
12-
Invoke-WebRequest $download -Headers @{Authorization = "token ${Env:GITHUB_TOKEN}"} -o jack2.exe
12+
Invoke-WebRequest $download -Headers @{Authorization = "token ${Env:GITHUB_TOKEN}"} -OutFile jack2.exe
1313
Start-Process -FilePath '.\jack2.exe' -ArgumentList '/SILENT' -Wait -NoNewWindow
1414

1515
# The lib is moved to the JACK library for 2 reasons:

0 commit comments

Comments
 (0)