Skip to content

Commit a76bb0b

Browse files
author
Ilya Radchenko
committed
fix: cli use strict and semi
1 parent 1af88c4 commit a76bb0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/strider

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env node
2+
'use strict';
23

34
var cli = require('strider-cli')({
45
version: require('../package.json').version,
@@ -46,7 +47,7 @@ var cli = require('strider-cli')({
4647
* Path to file to touch to restart strider
4748
*/
4849
restartFile: function () {
49-
var path = require('path')
50+
var path = require('path');
5051
var dir = path.join(__dirname, '..');
5152
return path.join(dir, '.restart');
5253
}

0 commit comments

Comments
 (0)