Don't check for auto updates on linux (#1592)

There aren't any!

// FREEBIE
pull/749/head
Lilia 8 years ago committed by Scott Nonnenberg
parent ce0e39aaa7
commit 3b810d3196

@ -11,7 +11,7 @@ const RESTART_BUTTON = 0;
const LATER_BUTTON = 1;
function autoUpdateDisabled() {
return process.mas || config.get('disableAutoUpdate');
return process.platform === 'linux' || process.mas || config.get('disableAutoUpdate');
}
function checkForUpdates() {

Loading…
Cancel
Save