mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-09 23:02:47 +01:00
12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "$TRAVIS_OS_NAME" = "osx"; then
|
|
# Mac OS X.
|
|
brew update
|
|
brew install qt5
|
|
else
|
|
# Linux.
|
|
sudo apt-get update
|
|
sudo apt-get -y install qt57tools qt57base qt57webengine
|
|
source /opt/qt57/bin/qt57-env.sh
|
|
fi |