diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-04-28 17:54:39 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-04-28 17:54:39 +0300 |
commit | cdba8549542cfea707a9086c219afccb1043d7db (patch) | |
tree | 80ce35a300bbaf839310d549f62029e03721a453 | |
parent | Prettify macOS installer with dmgbuild (diff) | |
download | nheko-cdba8549542cfea707a9086c219afccb1043d7db.tar.xz |
Fix pip/SSL issue on travis
-rwxr-xr-x | .ci/install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index 5735befb..27e0609a 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -6,7 +6,11 @@ if [ $TRAVIS_OS_NAME == osx ]; then brew update brew install qt5 lmdb clang-format ninja - pip install dmgbuild + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + sudo python get-pip.py + + sudo pip install --upgrade pip + sudo pip install dmgbuild export CMAKE_PREFIX_PATH=/usr/local/opt/qt5 fi |