diff options
| author | Igor Minar | 2014-02-06 02:31:23 -0800 | 
|---|---|---|
| committer | Igor Minar | 2014-02-06 02:31:23 -0800 | 
| commit | e609239fab46d7f8af195a69756c91b4f66c8463 (patch) | |
| tree | ed495cf033b49fb7017972af44bb599729f58b4c | |
| parent | 4224cd5182bc93e4a210f75e0a4e4de7f3c544e8 (diff) | |
| download | angular.js-e609239fab46d7f8af195a69756c91b4f66c8463.tar.bz2 | |
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
| -rw-r--r-- | .travis.yml | 4 | ||||
| -rw-r--r-- | Gruntfile.js | 1 | 
2 files changed, 1 insertions, 4 deletions
| diff --git a/.travis.yml b/.travis.yml index fb038aba..6a24af3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,7 @@ before_script:    - mkdir -p $LOGS_DIR    - ./lib/sauce/sauce_connect_setup.sh    - npm install -g grunt-cli -  - grunt bower -  - grunt bower -  - grunt package-without-bower +  - grunt package    - ./scripts/travis/wait_for_browser_provider.sh  script: diff --git a/Gruntfile.js b/Gruntfile.js index d9e58049..123a0d72 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -300,7 +300,6 @@ module.exports = function(grunt) {    grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);    grunt.registerTask('webserver', ['connect:devserver']);    grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']); -  grunt.registerTask('package-without-bower', ['clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);    grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);    grunt.registerTask('default', ['package']);  }; | 
