From f1231c6c36be6b2c4c079d847b1290f0d5b25112 Mon Sep 17 00:00:00 2001 From: Satinder Grewal Date: Wed, 15 Mar 2017 04:02:40 +1300 Subject: [PATCH] Windows 32bit and 64bit package generator instructions updated --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 89b6972..2cf89d3 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,12 @@ Change directory to iguana and execute the following command to build the Window ```shell dir iguana electron-packager . --platform=win32 --arch=x64 --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite + +# If generating 32bit desktop package +electron-packager . --platform=win32 --arch=ia32 --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite + +# To build both x64 and x86 desktop package +electron-packager . --platform=win32 --arch=all --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite ``` change architecture build parameter to ```--arch=x64``` for 64 bit build