Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit e609239

Browse files
committed
chore(travis): remove double bower install to test if it's still needed
We did this due to travis-ci/travis-ci#1293 but since it's possible that this hack is not needed, I'm removing it. If it turns out that we do need it still then we should ping the travis issue and revert this commit
1 parent 4224cd5 commit e609239

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ before_script:
1818
- mkdir -p $LOGS_DIR
1919
- ./lib/sauce/sauce_connect_setup.sh
2020
- npm install -g grunt-cli
21-
- grunt bower
22-
- grunt bower
23-
- grunt package-without-bower
21+
- grunt package
2422
- ./scripts/travis/wait_for_browser_provider.sh
2523

2624
script:

Gruntfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@ module.exports = function(grunt) {
300300
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
301301
grunt.registerTask('webserver', ['connect:devserver']);
302302
grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
303-
grunt.registerTask('package-without-bower', ['clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
304303
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);
305304
grunt.registerTask('default', ['package']);
306305
};

0 commit comments

Comments
 (0)