fix: support Argus publishing in Windows PowerShell
This commit is contained in:
@@ -68,7 +68,10 @@ function Get-PublicCatalogFlag {
|
|||||||
param([object]$Manifest)
|
param([object]$Manifest)
|
||||||
|
|
||||||
if ($Manifest.PSObject.Properties.Name -contains "publicCatalog") {
|
if ($Manifest.PSObject.Properties.Name -contains "publicCatalog") {
|
||||||
return if ([bool]$Manifest.publicCatalog) { "1" } else { "0" }
|
if ([bool]$Manifest.publicCatalog) {
|
||||||
|
return "1"
|
||||||
|
}
|
||||||
|
return "0"
|
||||||
}
|
}
|
||||||
|
|
||||||
return "1"
|
return "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user