From f9141dd39c49d99d5a4b8d6f2d86c954ead2d2a2 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 11 Apr 2016 01:38:35 +0200 Subject: [PATCH] 32 bit build for Linux (#369) * Add 32 bit arch for Linux * Fix trailing spaces --- bin/package.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/package.js b/bin/package.js index 5f37b4a2..b7f06f38 100755 --- a/bin/package.js +++ b/bin/package.js @@ -131,7 +131,10 @@ var win32 = { } var linux = { - platform: 'linux' + platform: 'linux', + + // Build 32/64 bit binaries. + arch: 'all' // Note: Application icon for Linux is specified via the BrowserWindow `icon` option. }