Skip to content

Commit

Permalink
fix: cli use strict and semi
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko committed Feb 20, 2017
1 parent 1af88c4 commit a76bb0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/strider
@@ -1,4 +1,5 @@
#!/usr/bin/env node
'use strict';

var cli = require('strider-cli')({
version: require('../package.json').version,
Expand Down Expand Up @@ -46,7 +47,7 @@ var cli = require('strider-cli')({
* Path to file to touch to restart strider
*/
restartFile: function () {
var path = require('path')
var path = require('path');
var dir = path.join(__dirname, '..');
return path.join(dir, '.restart');
}
Expand Down

0 comments on commit a76bb0b

Please sign in to comment.