Skip to content

Commit 3d24beb

Browse files
committed
Merge pull request #2 from browserstack/travis
fixes regex
2 parents 5227eec + bc99f22 commit 3d24beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Local.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function Local(){
1212
this.logfile = path.join(process.cwd(), 'local.log');
1313
this.exitCallback;
1414

15-
this.errorRegex = /\*\*\* Error\: [^\n]+?/i;
15+
this.errorRegex = /\*\*\* Error: [^\n]+/i;
1616
this.doneRegex = /Press Ctrl-C to exit/i;
1717

1818
this.start = function(options, callback){

0 commit comments

Comments
 (0)