Skip to content

Commit

Permalink
Merge pull request Experience-Monks#55 from zzarcon/chore/log_electro…
Browse files Browse the repository at this point in the history
…n_version

Log Electron version
  • Loading branch information
mattdesl committed Mar 21, 2016
2 parents 82c6c55 + 51c682a commit 8fedb63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ if (!argv.verbose) {
}

if (argv.version || argv.v) {
console.log(require('./package.json').version);
console.log('devtool ' + require('./package.json').version);
console.log('electron ' + process.versions.electron);
console.log('node ' + process.versions.node);
console.log('chrome ' + process.versions.chrome);
process.exit(0);
}

Expand Down

0 comments on commit 8fedb63

Please sign in to comment.