mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't call package build script with powershell
This commit is contained in:
parent
fd60974752
commit
38e6857b06
1 changed files with 2 additions and 2 deletions
|
@ -221,7 +221,7 @@ if ( $CICD ) {
|
|||
$KeywordArguments["CICD"] = $true
|
||||
}
|
||||
|
||||
powershell -file "$SCRIPT_DIR\nsis\build_pkg.ps1" @KeywordArguments
|
||||
& "$SCRIPT_DIR\nsis\build_pkg.ps1" @KeywordArguments
|
||||
|
||||
if ( ! $? ) {
|
||||
Write-Host "Failed to build NSIS package"
|
||||
|
@ -232,7 +232,7 @@ if ( ! $? ) {
|
|||
# Build MSI Package
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
powershell -file "$SCRIPT_DIR\msi\build_pkg.ps1" @KeywordArguments
|
||||
& "$SCRIPT_DIR\msi\build_pkg.ps1" @KeywordArguments
|
||||
|
||||
if ( ! $? ) {
|
||||
Write-Host "Failed to build NSIS package"
|
||||
|
|
Loading…
Add table
Reference in a new issue