rssguard/.travis-before-install.sh
2016-08-24 10:47:51 +02:00

11 lines
No EOL
187 B
Bash
Executable file

#!/bin/sh
if test "$TRAVIS_OS_NAME" = 'osx'; then
# Mac OS X.
brew update
brew install qt5
else
# Linux.
apt-get update
apt-get -y install qt57tools qt57base qt57webengine
fi