Mercurial > hg > sonic-visualiser
comparison deploy/clean-build-and-package @ 2582:af1a7d76539d
Note if no Makefile found
author | Chris Cannam |
---|---|
date | Thu, 23 Jul 2020 16:49:42 +0100 |
parents | 32718f05903d |
children | 4448639b9bb1 |
comparison
equal
deleted
inserted
replaced
2581:be6a245c43f3 | 2582:af1a7d76539d |
---|---|
13 | 13 |
14 mkdir -p packages | 14 mkdir -p packages |
15 echo | 15 echo |
16 | 16 |
17 if [ -d /Applications ]; then | 17 if [ -d /Applications ]; then |
18 | |
19 if [ ! -f Makefile ]; then | |
20 echo "You must have run a routine normal build at least once before this, so I can see which Qt settings to use" | |
21 exit 1 | |
22 fi | |
18 | 23 |
19 qmake=$(grep '^# Command: ' Makefile | awk '{ print $3; }') | 24 qmake=$(grep '^# Command: ' Makefile | awk '{ print $3; }') |
20 | 25 |
21 echo "Proceed to rebuild, package, and sign version $version using" | 26 echo "Proceed to rebuild, package, and sign version $version using" |
22 echo -n "qmake path \"$qmake\" [Yn] ? " | 27 echo -n "qmake path \"$qmake\" [Yn] ? " |