aboutsummaryrefslogtreecommitdiff
path: root/.ci/install.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/install.sh')
-rwxr-xr-x.ci/install.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/.ci/install.sh b/.ci/install.sh
index fb5d1c09c1..cb2362a70e 100755
--- a/.ci/install.sh
+++ b/.ci/install.sh
@@ -19,14 +19,13 @@ elif [[ "${BUILD_MINGW}" == ON ]]; then
fi
-# Set CC to default to avoid compilation problems
-# when installing Python modules.
+# Use default CC to avoid compilation problems when installing Python modules.
echo "Install neovim module and coveralls for Python 2."
-CC=cc pip2.7 install --user --upgrade neovim cpp-coveralls
+CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls
echo "Install neovim module for Python 3."
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- CC=cc pip3 install --user --upgrade neovim
+ CC=cc pip3 -q install --user --upgrade neovim
else
- CC=cc pip3.3 install --user --upgrade neovim
+ CC=cc pip3.3 -q install --user --upgrade neovim
fi