bash to source in travis

This commit is contained in:
itsmattkc
2019-02-10 13:16:16 -08:00
parent 83c24de83f
commit 7877cfe397
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -15,16 +15,16 @@ matrix:
- os: osx
before_install:
- bash ./.travis/before_install.sh
- source ./.travis/before_install.sh
install:
- bash ./.travis/install.sh
- source ./.travis/install.sh
script:
- bash ./.travis/script.sh
- source ./.travis/script.sh
after_success:
- bash ./.travis/after_success.sh
- source ./.travis/after_success.sh
branches:
except:
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
brew install ffmpeg qt5
# do nothing
elif [[ $TRAVIS_OS_NAME == 'linux' ]]; then
sudo add-apt-repository ppa:beineri/opt-qt593-trusty -y
sudo add-apt-repository ppa:jonathonf/ffmpeg-3 -y