From 29d32ca4f531b2600b1d7a387c08ca3867e77e4b Mon Sep 17 00:00:00 2001 From: Ayhan Date: Thu, 21 Jul 2016 21:54:14 +0300 Subject: [PATCH] Fix linux autoupdate (#338) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 82218e93..45e65913 100644 --- a/index.js +++ b/index.js @@ -78,7 +78,7 @@ app.on('ready', () => { if (fn) fn(win); // auto updates - if (!isDev) { + if (!isDev && process.platform !== 'linux') { AutoUpdater(win); } else { console.log('ignoring auto updates during dev');