# HG changeset patch # User Chris Cannam # Date 1589560409 -3600 # Node ID ddcb0e606d28cfea0a456c7c7b75d311d024e43c # Parent decfb0bb370bed1aeac8932dac0f988f342130c9 Include get-version in build process diff -r decfb0bb370b -r ddcb0e606d28 deploy/osx/build-and-package.sh --- a/deploy/osx/build-and-package.sh Fri May 15 14:24:00 2020 +0100 +++ b/deploy/osx/build-and-package.sh Fri May 15 17:33:29 2020 +0100 @@ -63,9 +63,14 @@ make -j3 -f Makefile.plugins echo "Done" +echo +echo "Building get-version..." +make -j3 -f Makefile.get-version +echo "Done" + echo -echo "Signing plugins..." -codesign -s "$identity" -fv --timestamp --options runtime out/*.dylib +echo "Signing plugins and get-version..." +codesign -s "$identity" -fv --timestamp --options runtime out/*.dylib out/get-version echo "Done" if [ "$notarize" = no ]; then @@ -73,7 +78,7 @@ echo "The --no-notarization flag was set: not submitting for notarization" else echo - echo "Notarizing plugins..." + echo "Notarizing plugins and get-version..." rm -f plugins.zip ditto -c -k out plugins.zip deploy/osx/notarize.sh plugins.zip