Skip to content

Commit

Permalink
fix(scoop-info): Fix error message when manifest is not found (#4935)
Browse files Browse the repository at this point in the history
  • Loading branch information
quotidian-ennui authored May 17, 2022
1 parent bb5392b commit 47d7f76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion libexec/scoop-info.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 47d7f76

Please sign in to comment.