Skip to content

Commit

Permalink
chore(travis): rename fetch_bundle script and make it not abort a tra…
Browse files Browse the repository at this point in the history
…vis build if it fails

This is useful when the npm-bundle-deps server isn't running,
when the tar never gets served (there's a default timeout on the request),
or when the served file isn't a valid tar.
  • Loading branch information
rodyhaddad committed Aug 2, 2014
1 parent c024f28 commit 7884c25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install:
- npm config set spin false
# Log HTTP requests
- npm config set loglevel http
- time ./scripts/travis/fetch_bundle.sh
- time ./scripts/travis/npm-bundle-deps.sh
- time npm install

before_script:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -e
cd $(dirname $0);

cd ../..
curl "http://23.251.148.50:8000/tar/$TRAVIS_REPO_SLUG/$TRAVIS_COMMIT" | tar xz
curl "http://23.251.148.50:8000/tar/$TRAVIS_REPO_SLUG/$TRAVIS_COMMIT" | tar xz || true

0 comments on commit 7884c25

Please sign in to comment.