Skip to content

Commit

Permalink
attempt to fix PATH issues with rvm
Browse files Browse the repository at this point in the history
  • Loading branch information
citrusui committed Jan 9, 2017
1 parent 689c027 commit 46758f5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
language: node_js
node_js: stable
before_install:

# Workaround for https://github.com/travis-ci/travis-ci/issues/5092

- if [ -f node_modules/.bin/which ]; then mv node_modules/.bin/which node_modules/.bin/which.backup; fi
- rvm install 2.4.0
- if [ -f node_modules/.bin/which.backup ]; then mv node_modules/.bin/which.backup node_modules/.bin/which; fi
install:
- rvm install 2.3.3
- gem install bundler
- npm install
- bundle install
Expand Down

0 comments on commit 46758f5

Please # to comment.