Skip to content

Commit 879aa52

Browse files
committed
removed fixed unix style path and expect boltstub to be in PATH
1 parent 5409ab2 commit 879aa52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/v1/boltkit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ BoltKit.prototype.startWithTemplate = function (scriptTemplate, parameters, port
3737
BoltKit.prototype.start = function(script, port) {
3838
var spawn = childProcess.spawn, server, code = -1;
3939

40-
server = spawn('/usr/local/bin/boltstub', ['-v', port, script]);
40+
server = spawn('boltstub', ['-v', port, script]);
4141
if (this.verbose) {
4242
server.stdout.on('data', (data) => {
4343
console.log(`${data}`);

0 commit comments

Comments
 (0)