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:
Jamezz 2015-03-06 13:14:11 -08:00
parent 2f4a0af5d1
commit 71c40bdf6a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ if (Test-Path C:\tmp\minion.pem) {
# Detect architecture # Detect architecture
if ([IntPtr]::Size -eq 4) { if ([IntPtr]::Size -eq 4) {
$arch = "win32" $arch = "x86"
} else { } else {
$arch = "AMD64" $arch = "AMD64"
} }