We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c1cb74 commit 4f979afCopy full SHA for 4f979af
build.sh
@@ -81,6 +81,7 @@ main() {
81
-configuration "Release"
82
83
TARGET_APP="./build/Release/DTerm.app"
84
+ TARGET_VERSION="$(/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" "$TARGET_APP/Contents/Info.plist")"
85
86
if [[ ! -d "$TARGET_APP" ]]; then
87
error "missing $TARGET_APP"
@@ -118,9 +119,10 @@ main() {
118
119
120
echo "---------------------------------------------------"
121
echo ">> Build Complete: $(dirname $TARGET_APP)"
- echo ">> APP: $TARGET_APP"
122
+ echo ">> Version: $TARGET_VERSION"
123
+ echo ">> APP: $TARGET_APP"
124
if [[ "$WITH_DMG" == "yes" ]]; then
- echo ">> DMG: $TARGET_DMG"
125
+ echo ">> DMG: $TARGET_DMG"
126
fi
127
if [[ "$WITH_CODESIGN" == "yes" ]]; then
128
echo ">> Codesigning Details:"
0 commit comments