msys2-installer: Fix a comparison so only 32-bit executables are rebased

Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
This commit is contained in:
Sebastian Schuberth
2015-03-04 09:27:14 +01:00
parent c9c3acadcd
commit 1b594b79e9

View File

@@ -33,7 +33,7 @@ function createShortcuts()
"@StartMenuDir@/MinGW-w64 Win64 Shell.lnk",
"/A /Q /K " + installer.value("TargetDir") + "\\mingw64_shell.bat");
if ("@BITNESS@bit" === "@BITNESS@bit") {
if ("@BITNESS@bit" === "32bit") {
component.addOperation( "Execute",
["@TargetDir@\\autorebase.bat"]);
}