Skip to content

Commit

Permalink
Travis: try to guess qmake path
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov committed Jul 7, 2019
1 parent 44e23e8 commit 9aa836c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildScripts/travis/after_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ case $TRAVIS_OS_NAME in
TSNAME=trik-studio-installer-mac-$TRAVIS_BRANCH.dmg
;;
linux)
QTIFWBIN=$(find /Qt/Tools/QtInstallerFramework/ -maxdepth 2 -name bin -type d -print0 | sort -Vrz | head -zn 1)
QTIFWBIN=$($EXECUTOR bash -c 'find /Qt/Tools/QtInstallerFramework/ -maxdepth 2 -name bin -type d -print0 | sort -Vrz | head -zn 1')
TSNAME=trik-studio-installer-linux-$TRAVIS_BRANCH.run
;;
*) exit 1 ;;
esac
QTBIN=${QTBIN:-$($EXECUTOR qmake -query QT_HOST_BINS)}
QTBIN=${QTBIN:-$($EXECUTOR bash -c "make qmake -n | sed 's#/qmake.*\$##g'")}
df -h .

if $INSTALLER && ! $TIMEOUT && [ "$TRAVIS_REPO_SLUG" == "trikset/trik-studio" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]
Expand Down

0 comments on commit 9aa836c

Please sign in to comment.