Skip to content

Commit

Permalink
Merge branch 'master' into github_master
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-soltys committed Jul 5, 2021
2 parents d2c9ec1 + 3379de1 commit a63af06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ popd

. ${myPath}/lib.sh

qmakeCmd=$(which qmake6)
if [ -e "$qmakeCmd" ]
qmakeCmd="qmake6"
if ! which $qmakeCmd
then
echo_e "File does not exist '${qmakeCmd}'"
qmakeCmd=$(which qmake)
if [ -e "$qmakeCmd" ]
qmakeCmd="qmake"
if ! which $qmakeCmd
then
echo_e "File does not exist '${qmakeCmd}'"
exit 1
Expand Down

0 comments on commit a63af06

Please sign in to comment.