Skip to content

Commit

Permalink
Disabling auto-updates on macos due to signing error
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Sep 6, 2017
1 parent 981ee44 commit 0859807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const electron = require('electron');

module.exports.init = () => {
if (process.platform === 'linux') {
if (process.platform !== 'win32') {
return;
}

Expand Down Expand Up @@ -32,7 +32,7 @@ module.exports.init = () => {
};

module.exports.checkUpdate = () => {
if (process.platform === 'linux') {
if (process.platform !== 'win32') {
return;
}

Expand Down

0 comments on commit 0859807

Please sign in to comment.