From cf9ff2a2fe69d976a39a0617301354584c1237fe Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 29 Aug 2017 08:42:13 +0200 Subject: [PATCH] Don't expect qtdeploy in the PATH --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b7fd7f3..a3400a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,8 +54,8 @@ script: - go get -v github.com/therecipe/qt/cmd/... - if [[ "$DESKTOP" == "true" ]]; then $GOPATH/bin/qtsetup prep desktop && $GOPATH/bin/qtsetup check desktop && $GOPATH/bin/qtsetup generate desktop && $GOPATH/bin/qtsetup install desktop; fi - if [[ "$ANDROID" == "true" ]]; then $GOPATH/bin/qtsetup full android; fi - - if [[ "$DESKTOP" == "true" ]]; then qtdeploy build desktop; fi - - if [[ "$ANDROID" == "true" ]]; then qtdeploy build android; fi + - if [[ "$DESKTOP" == "true" ]]; then $GOPATH/bin/qtdeploy build desktop; fi + - if [[ "$ANDROID" == "true" ]]; then $GOPATH/bin/qtdeploy build android; fi # - if [[ "$IOS" == "true" ]]; then $GOPATH/bin/qtsetup full ios; fi # - if [[ "$IOS_SIMULATOR" == "true" ]]; then $GOPATH/bin/qtsetup full ios-simulator; fi # - if [[ "$QT_MXE" == "true" ]]; then $GOPATH/bin/qtsetup full windows; fi