Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion lib/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ function nightly_version($date, $quiet = $false) {
"nightly-$date_str"
}

function Test-ManifestReviewEnabled {
return get_config 'manifest-review' $false
}

Comment thread
rashil2000 marked this conversation as resolved.
Outdated
function install_app($app, $architecture, $global, $suggested, $use_cache = $true, $check_hash = $true) {
$app, $bucket, $null = parse_app $app
$app, $manifest, $bucket, $url = Find-Manifest $app $bucket
Expand All @@ -34,7 +38,18 @@ function install_app($app, $architecture, $global, $suggested, $use_cache = $tru
return
}

write-output "Installing '$app' ($version) [$architecture]"
if (Test-ManifestReviewEnabled) {
Comment thread
rashil2000 marked this conversation as resolved.
Outdated
$show_manifest = read-host -Prompt "Show manifest? [y/N]"
if ($show_manifest -eq "y") {
write-output "manifest:"
write-output $manifest | ConvertToPrettyJson
$answer = read-host -Prompt "Continue installation? [Y/n]"

if ($answer -eq "n") {
return
}
}
}
Comment thread
rashil2000 marked this conversation as resolved.

$dir = ensure (versiondir $app $version $global)
$original_dir = $dir # keep reference to real (not linked) directory
Expand Down