Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
1000ch committed Jan 6, 2017
1 parent c139d36 commit 42a9868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const appMenu = require('./menu');
const tray = require('./tray');
const config = require('./config');
const update = require('./update');
const pkg = require('./package');

const app = electron.app;

Expand Down
3 changes: 2 additions & 1 deletion update.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
'use strict';
const electron = require('electron');
const pkg = require('./package');

const autoUpdater = electron.autoUpdater;

module.exports.init = (appMenu) => {
module.exports.init = appMenu => {
if (process.platform !== 'darwin') {
return;
}
Expand Down

0 comments on commit 42a9868

Please sign in to comment.