rssguard/resources/scripts/.travis-before-install.sh
2016-08-24 12:30:11 +02:00

13 lines
No EOL
278 B
Bash
Executable file

#!/bin/sh
if test "$TRAVIS_OS_NAME" = "osx"; then
# Mac OS X.
brew update
brew install qt5
brew link --force qt5
else
# Linux.
sudo add-apt-repository ppa:beineri/opt-qt57-trusty -y
sudo apt-get update
sudo apt-get -y install qt57tools qt57base qt57webengine
fi