Skip to content

Commit

Permalink
Try to convince Travis to build for iojs. See nodejs/node#433.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokaiser committed Aug 11, 2015
1 parent 249470d commit 36c00e6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,11 @@ node_js:
- "iojs"

before_install: |
- case ${TRAVIS_NODE_VERSION} in 0.8*|0.10*) npm update -g npm ;; esac
case ${TRAVIS_NODE_VERSION} in
iojs*)
echo "Not upgrading npm for iojs."
;;
*)
npm update -g npm
;;
esac

0 comments on commit 36c00e6

Please sign in to comment.