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 5a0b74b commit dad3111Copy full SHA for dad3111
contrib/win-installer/utils.ps1
@@ -81,7 +81,11 @@ function SignItem() {
81
}
82
83
84
- CheckCommand AzureSignTool.exe 'AzureSignTool'
+ # Check if AzureSignTool is installed
85
+ if (! (Get-Command 'AzureSignTool.exe' -errorAction SilentlyContinue)) {
86
+ Write-Error "Required dep `"AzureSignTool`" is not installed. "
87
+ Exit 1
88
+ }
89
90
AzureSignTool.exe sign -du 'https://github.com/containers/podman' `
91
-kvu "https://$ENV:VAULT_ID.vault.azure.net" `
0 commit comments