]> gitweb.factorcode.org Git - factor.git/commitdiff
.travis.yml: Fix rvm error hopefully.
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 7 Jul 2018 19:46:32 +0000 (14:46 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 7 Jul 2018 19:46:32 +0000 (14:46 -0500)
/Users/travis/build.sh: line 109: shell_session_update: command not found

https://github.com/travis-ci/travis-ci/issues/6307

.travis.yml

index 39cefda865edaa7f9abca90fd8750fb8b784eeee..6cabe1d5f5af2b447d7cfe39111c4f711239a905 100644 (file)
@@ -44,6 +44,7 @@ before_install:
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start redis; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start postgresql; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start memcached; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rvm get stable; fi  # https://github.com/travis-ci/travis-ci/issues/6307
   - >
     wget https://github.com/vmt/udis86/archive/v1.7.2.tar.gz && tar xzvf v1.7.2.tar.gz &&
     ( cd udis86-1.7.2/ && ./autogen.sh && ./configure --enable-shared=yes && make && sudo make install ) &&