Skip to content

Commit 87e4cd8

Browse files
committed
Fixed missing semi colon
1 parent 235127e commit 87e4cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function Local(){
258258
this.sanitizePath = function(rawPath) {
259259
var doubleQuoteIfRequired = this.windows && !rawPath.match(/"[^"]+"/) ? '"' : '';
260260
return doubleQuoteIfRequired + rawPath + doubleQuoteIfRequired;
261-
}
261+
};
262262

263263
this.killAllProcesses = function(callback){
264264
psTree(this.pid, (err, children) => {

0 commit comments

Comments
 (0)