Skip to content

Commit

Permalink
Fixed up lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
twolfson committed Jun 18, 2019
1 parent aeaf7f7 commit a87cb3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/electron-launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ async.parallel([
if (err) { return cb(err); }

// Otherwise, load in our options
var extendedOptions;
try {
var extendedOptions = JSON.parse(extendedOptionsStr);
extendedOptions = JSON.parse(extendedOptionsStr);
} catch (err) {
console.error('Error loading extended options: ' + extendedOptionsStr);
return cb(err);
Expand Down

0 comments on commit a87cb3f

Please sign in to comment.