Skip to content

Commit fb496c4

Browse files
committed
fix: Show manifest name while reviewing
Useful when Scoop installs dependencies and shows their manifests first
1 parent dec2598 commit fb496c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function install_app($app, $architecture, $global, $suggested, $use_cache = $tru
3535
}
3636

3737
if ((get_config 'manifest-review' $false) -and ($MyInvocation.ScriptName -notlike '*scoop-update*')) {
38-
Write-Output 'Manifest:'
38+
Write-Output "Manifest: $app.json"
3939
Write-Output $manifest | ConvertToPrettyJson
4040
$answer = Read-Host -Prompt "Continue installation? [Y/n]"
4141
if (($answer -eq 'n') -or ($answer -eq 'N')) {

0 commit comments

Comments
 (0)