Skip to content

Commit

Permalink
fix(build): Fixing build failure due to poor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Dec 23, 2017
1 parent 0393186 commit 9382312
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: node_js
sudo: false # defaults to sending build to container-based infrastructure on Travis

node_js:
- 4
- 6

notifications:
webhooks:
Expand Down
6 changes: 3 additions & 3 deletions grunt/shell.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = function() {
var webdriverManagerPath = './node_modules/protractor/bin/webdriver-manager';
var bowerPath = './node_modules/bower/bin/bower';
var webdriverManagerPath = './node_modules/protractor/bin/webdriver-manager',
bowerPath = './node_modules/bower/bin/bower';

if(process.platform === 'win32') {
if (process.platform === 'win32') {
webdriverManagerPath = '.\\node_modules\\protractor\\bin\\webdriver-manager';
bowerPath = '.\\node_modules\\bower\\bin\\bower';
}
Expand Down

0 comments on commit 9382312

Please sign in to comment.