From 6988a53b2e5ebcad467f64684023cf111f7fe3a7 Mon Sep 17 00:00:00 2001 From: Cody Krieger Date: Wed, 16 Dec 2020 01:41:25 -0800 Subject: [PATCH] script/dist: add missing DEPLOYMENT_TARGET variable definition so that we generate the correct appcast entry --- script/dist | 1 + 1 file changed, 1 insertion(+) diff --git a/script/dist b/script/dist index f02a55b..9ba2fd5 100755 --- a/script/dist +++ b/script/dist @@ -41,6 +41,7 @@ xcodebuild -workspace gfxCardStatus.xcworkspace \ VERSION="$(defaults read "$APP_PATH/Contents/Info.plist" CFBundleShortVersionString)" BUILD_VERSION="$(defaults read "$APP_PATH/Contents/Info.plist" CFBundleVersion)" BUNDLE_IDENTIFIER="$(defaults read "$APP_PATH/Contents/Info.plist" CFBundleIdentifier)" +DEPLOYMENT_TARGET="$(defaults read "$APP_PATH/Contents/Info.plist" LSMinimumSystemVersion)" ZIP_PATH="$EXPORT_PATH/$PROJECT_NAME-$VERSION.zip" echo "----> zipping app..."