From 704f44feeb7afff48254c74a3f8c7a428c7f5e74 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Thu, 29 Dec 2016 21:41:39 +0200 Subject: [PATCH] Fix broken make_install.bat on Windows 64 bit. --HG-- branch : develop --- scripts/make_install.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make_install.bat b/scripts/make_install.bat index af74aa1cb..c8b0f4808 100644 --- a/scripts/make_install.bat +++ b/scripts/make_install.bat @@ -1,7 +1,7 @@ rem script helps create installer rem find target architecture -IF "%PROCESSOR_ARCHITECTURE%"=="x86" (set ARCHITECTURE=32BIT) else (ARCHITECTURE=64BIT) +IF "%PROCESSOR_ARCHITECTURE%"=="x86" (set ARCHITECTURE=32BIT) else (set ARCHITECTURE=64BIT) rem Path to Inno Setup according to architecture if %ARCHITECTURE%==32BIT set nsis_path="C:/Program Files/Inno Setup 5/iscc.exe"