Skip to content

Commit

Permalink
fix(windows): Resolve windows runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Nov 17, 2017
1 parent 6145eef commit bca7ed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/bin/galen
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if (process.platform === 'win32') {
args.push('-Dwebdriver.chrome.driver=' + chromePath);
// adding geckodriver

var geckoPath = path.resolve(baseDir, '../node_modules/geckodriver/bin/geckodriver');
var geckoPath = path.resolve(baseDir, '../node_modules/geckodriver/geckodriver');
if (process.platform === 'win32') {
geckoPath += '.exe';
}
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"license": "MIT",
"engine-strict": true,
"engines": {
"node": ">= 4",
"node": ">= 4.5.0",
"npm": ">= 3"
},
"_galenVersion": "2.3.5"
Expand Down

0 comments on commit bca7ed8

Please sign in to comment.