We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c6f8c commit f36cae5Copy full SHA for f36cae5
1 file changed
lib/core.ps1
@@ -320,7 +320,7 @@ function app_status($app, $global) {
320
$status.missing_deps = @()
321
$deps = @($manifest.depends) | Where-Object {
322
if ($null -eq $_) {
323
- return $false
+ return $null
324
} else {
325
$app, $bucket, $null = parse_app $_
326
return !(installed $app)
@@ -774,7 +774,7 @@ function Confirm-InstallationStatus {
774
}
775
776
if (failed $App $Global) {
777
- warn "'$App' isn't installed correctly."
+ error "'$App' isn't installed correctly, please reinstall it or fix the manifest."
778
779
780
return , $Installed
0 commit comments