diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bf177ed19..1443e49656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - **bucket:** Don't check remote URL of non-git buckets ([#4923](https://github.com/ScoopInstaller/Scoop/issues/4923)) - **bucket:** Don't write message OK before bucket is cloned ([#4925](https://github.com/ScoopInstaller/Scoop/issues/4925)) - **shim:** Remove character replacement in .cmd -> .ps1 shims ([#4914](https://github.com/ScoopInstaller/Scoop/issues/4914)) +- **scoop-info:** Fix error message when manifest is not found ([#4935](https://github.com/ScoopInstaller/Scoop/issues/4935)) ### Documentation diff --git a/libexec/scoop-info.ps1 b/libexec/scoop-info.ps1 index e192409626..ebd7b8d8c5 100644 --- a/libexec/scoop-info.ps1 +++ b/libexec/scoop-info.ps1 @@ -30,7 +30,7 @@ if ($app -match '^(ht|f)tps?://|\\\\') { } if (!$manifest) { - abort "Could not find manifest for '$(show_app $app $bucket)'." + abort "Could not find manifest for '$(show_app $app)' in local buckets." } $install = install_info $app $status.version $global