We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0393186 commit 9382312Copy full SHA for 9382312
.travis.yml
@@ -2,7 +2,7 @@ language: node_js
2
sudo: false # defaults to sending build to container-based infrastructure on Travis
3
4
node_js:
5
- - 4
+ - 6
6
7
notifications:
8
webhooks:
grunt/shell.js
@@ -1,8 +1,8 @@
1
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';
}
0 commit comments