We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent21be118 commitd53115cCopy full SHA for d53115c
travis_config.sh
@@ -101,14 +101,6 @@ function pre_build {
101
brew_add_local_bottles
102
fi
103
104
-echo'Installing qt5'
105
-if [-n"$CACHE_STAGE" ];then
106
-echo"Qt5 has bottle, no caching needed"
107
-else
108
- brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/079ce55db79acc87b91bec950249595b1584e119/Formula/qt.rb
109
-export PATH="/usr/local/opt/qt/bin:$PATH"
110
-fi
111
-
112
echo'Installing FFmpeg'
113
114
if [-n"$CACHE_STAGE" ];then
@@ -118,6 +110,16 @@ function pre_build {
118
brew install ffmpeg_opencv
119
120
+echo'Installing qt5'
+
115
+if [-n"$CACHE_STAGE" ];then
116
+echo"Qt5 has bottle, no caching needed"
117
+else
+ brew unlink qt
+ brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/079ce55db79acc87b91bec950249595b1584e119/Formula/qt.rb
+export PATH="/usr/local/opt/qt/bin:$PATH"
121
+fi
122
123
124
brew_go_bootstrap_mode 0
125
return 0