Fix versioning of .dmg filenames.
authorCarl Hetherington <cth@carlh.net>
Sun, 16 Jan 2022 17:57:10 +0000 (18:57 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 17 Jan 2022 17:44:23 +0000 (18:44 +0100)
Now we use a tag if there is one at the commit we built, otherwise
<branch>-<commit>.

platform/osx/make_dmg.sh

index 3df5c57a208c2fcf2e99378db4cf0e320c31741b..80205822a9637c44e5e76b6471e29a133439a46d 100644 (file)
@@ -7,7 +7,12 @@ SYNTAX="make_dmg.sh <environment> <builddir> <apple-id> <apple-password> <arch1>
 # Don't set -e here as egrep (used a few times) returns 1 if no matches
 # were found.
 
-version=`git describe --tags --abbrev=0 | sed -e "s/v//"`
+# Use a tag if what we've built is exactly on one
+version=$(git describe --tags --abbrev=0 --match=v2.*.* --exact-match $1 2> /dev/null)
+if [ "$?" != "0" ]; then
+       # Otherwise use <branch>-<commit>
+       version="$(basename $(git name-rev --name-only HEAD))-$(git rev-parse --short HEAD)"
+fi
 
 # DMG size in megabytes
 DMG_SIZE=256