Skip to content

Commit 4887876

Browse files
committed
fix(misc): Some minor tweaks
1 parent b2c6f8c commit 4887876

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ function app_status($app, $global) {
320320
$status.missing_deps = @()
321321
$deps = @($manifest.depends) | Where-Object {
322322
if ($null -eq $_) {
323-
return $false
323+
return $null
324324
} else {
325325
$app, $bucket, $null = parse_app $_
326326
return !(installed $app)
@@ -774,7 +774,7 @@ function Confirm-InstallationStatus {
774774
}
775775
}
776776
if (failed $App $Global) {
777-
warn "'$App' isn't installed correctly."
777+
error "'$App' isn't installed correctly."
778778
}
779779
}
780780
return , $Installed

0 commit comments

Comments
 (0)