diff options
author | Steven Myint <git@stevenmyint.com> | 2014-04-25 06:31:49 -0700 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-04-26 08:48:30 -0400 |
commit | c70a526a5df2b8a7353c3c71e241cd51bf099a64 (patch) | |
tree | 0a7ac2d7ef59c310bdf906ab21bb7cba953b0a90 | |
parent | 342764d70ee8c9f05f4389a523dfd09f0795fcd1 (diff) | |
download | rneovim-c70a526a5df2b8a7353c3c71e241cd51bf099a64.tar.gz rneovim-c70a526a5df2b8a7353c3c71e241cd51bf099a64.tar.bz2 rneovim-c70a526a5df2b8a7353c3c71e241cd51bf099a64.zip |
Remove deprecated "--use-mirrors"
In newer versions of `pip`, it is obsolete. See the following relevant links.
https://pip.readthedocs.org/en/latest/news.html
https://github.com/eddyxu/cpp-coveralls/pull/37
-rwxr-xr-x | scripts/travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index cefc46a6f6..ccff095562 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -49,7 +49,7 @@ if [ "$TRAVIS_BUILD_TYPE" = "clang/asan" ]; then unxz -c | tar xf - --strip-components=1 -C /usr/local/clang-3.4 EOF fi - sudo pip install cpp-coveralls --use-mirrors + sudo pip install cpp-coveralls export CC=clang set_environment /opt/neovim-deps @@ -98,7 +98,7 @@ if [ "$TRAVIS_BUILD_TYPE" = "clang/asan" ]; then coveralls --encoding iso-8859-1 $MAKE_CMD install elif [ "$TRAVIS_BUILD_TYPE" = "gcc/unittest" ]; then - sudo pip install cpp-coveralls --use-mirrors + sudo pip install cpp-coveralls export CC=gcc set_environment /opt/neovim-deps export SKIP_EXEC=1 |