From fb496c482bec4063e01b328f943224ab703dbbd8 Mon Sep 17 00:00:00 2001 From: Rashil Gandhi Date: Thu, 23 Dec 2021 17:00:06 +0530 Subject: [PATCH] fix: Show manifest name while reviewing Useful when Scoop installs dependencies and shows their manifests first --- lib/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install.ps1 b/lib/install.ps1 index 7efb3e59c..88c1e8a0a 100644 --- a/lib/install.ps1 +++ b/lib/install.ps1 @@ -35,7 +35,7 @@ function install_app($app, $architecture, $global, $suggested, $use_cache = $tru } if ((get_config 'manifest-review' $false) -and ($MyInvocation.ScriptName -notlike '*scoop-update*')) { - Write-Output 'Manifest:' + Write-Output "Manifest: $app.json" Write-Output $manifest | ConvertToPrettyJson $answer = Read-Host -Prompt "Continue installation? [Y/n]" if (($answer -eq 'n') -or ($answer -eq 'N')) {