We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f397d2 commit 6320243Copy full SHA for 6320243
.github/scripts/Windows/install_jack.ps1
@@ -9,7 +9,7 @@ $repo = "jackaudio/jack2-releases"
9
$releases = "https://api.github.com/repos/$repo/releases"
10
$tag = (Invoke-WebRequest $releases -Headers @{Authorization = "token ${Env:GITHUB_TOKEN}"} | ConvertFrom-Json)[0].tag_name
11
$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
+Invoke-WebRequest $download -Headers @{Authorization = "token ${Env:GITHUB_TOKEN}"} -OutFile jack2.exe
13
Start-Process -FilePath '.\jack2.exe' -ArgumentList '/SILENT' -Wait -NoNewWindow
14
15
# The lib is moved to the JACK library for 2 reasons:
0 commit comments