File architecture string should be x86
As of 2014.7.0, Salt has changed their file naming for 32-bit from win32 to x86.
This commit is contained in:
parent
2f4a0af5d1
commit
71c40bdf6a
|
@ -15,7 +15,7 @@ if (Test-Path C:\tmp\minion.pem) {
|
|||
|
||||
# Detect architecture
|
||||
if ([IntPtr]::Size -eq 4) {
|
||||
$arch = "win32"
|
||||
$arch = "x86"
|
||||
} else {
|
||||
$arch = "AMD64"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue