Don't check for auto updates on linux (#1592)
There aren't any! // FREEBIE
This commit is contained in:
parent
ce0e39aaa7
commit
3b810d3196
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue