diff --git a/CHANGELOG.md b/CHANGELOG.md index e45103889f..123698b8f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -272,6 +272,7 @@ - **scoop:** Remove temporary code from the scoop executable ([#3898](https://github.com/ScoopInstaller/Scoop/issues/3898)) - **update:** Update outdated PowerShell 5 warning ([#3986](https://github.com/ScoopInstaller/Scoop/issues/3986)) - **scoop-info:** Check bucket of installed app ([#3740](https://github.com/ScoopInstaller/Scoop/issues/3740)) +- **scoop-download:** Use correct Args when calling `Get-Manifest` ([#4970](https://github.com/ScoopInstaller/Scoop/issues/4970)) ### Builds diff --git a/libexec/scoop-download.ps1 b/libexec/scoop-download.ps1 index 846750eb97..ff99995575 100644 --- a/libexec/scoop-download.ps1 +++ b/libexec/scoop-download.ps1 @@ -51,7 +51,7 @@ foreach ($curr_app in $apps) { $bucket = $version = $app = $manifest = $url = $null $app, $bucket, $version = parse_app $curr_app - $app, $manifest, $bucket, $url = Get-Manifest "$bucket/$app" + $app, $manifest, $bucket, $url = Get-Manifest $curr_app info "Starting download for $app..."