From 595fb3de3b656e4ceb90b1ec421f608f21edbb14 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 18 Nov 2025 12:55:41 -0500 Subject: [PATCH] Fix Apple plist VERSION tagging --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2cf89f1..3bae564 100644 --- a/Makefile +++ b/Makefile @@ -140,6 +140,8 @@ app-bundle: out build-darwin install-appify /usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist" @/usr/libexec/PlistBuddy -c "Add :CFBundleVersion string $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist" 2>/dev/null || \ /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist" + @/usr/libexec/PlistBuddy -c "Add :CFBundleGetInfoString string 'Review Goose $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist" 2>/dev/null || \ + /usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString 'Review Goose $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist" # Remove extended attributes and code sign the app bundle @echo "Preparing app bundle for signing..."