Skip to content

Commit

Permalink
Merge pull request #235 from codaco/fix/dont-update-on-startup
Browse files Browse the repository at this point in the history
don't check for updates on startup
  • Loading branch information
jthrilly authored Sep 12, 2018
2 parents fd9dcbe + dc6068a commit 803ad92
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions public/electron-starter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const { app } = require('electron');
const log = require('electron-log');
const updater = require('./components/updater');

const appManager = require('./components/appManager');

Expand All @@ -20,7 +19,6 @@ if (shouldQuit) {
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', () => {
updater.checkForUpdates();
appManager.start();
appManager.loadDevTools();
});
Expand Down

0 comments on commit 803ad92

Please sign in to comment.