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

There aren't any!

// FREEBIE
This commit is contained in:
Lilia 2017-10-23 10:44:05 -07:00 committed by Scott Nonnenberg
parent ce0e39aaa7
commit 3b810d3196

View file

@ -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() {