Skip to content

Commit d2b05b1

Browse files
committed
Semicolon for the linter
1 parent 9b7011f commit d2b05b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ exports.Server = function Server(bsClient, workers, config, callback) {
221221
}
222222

223223
function externalScript(scriptPath) {
224-
var resolvedPath = resolve.sync(scriptPath, { basedir: __dirname })
224+
var resolvedPath = resolve.sync(scriptPath, { basedir: __dirname });
225225
var scriptContents = fs.readFileSync(resolvedPath, { encoding: 'utf8' });
226226
return '<script type="text/javascript">' + scriptContents + '</script>';
227227
}

0 commit comments

Comments
 (0)