diff options
author | Marius Kintel <marius@kintel.net> | 2013-02-07 17:29:54 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-02-07 17:29:54 (GMT) |
commit | ac4cd5835424ae55f870e342efd0a88e66649dbe (patch) | |
tree | 27553821dd83214b6397322a392f7e57d5a686af /scripts/release-common.sh | |
parent | 648b9a28bff5e5c1974fda4bde81a2fad0727835 (diff) |
bugfix: Actually use Set instead of Add after we added the key to Info.plist manually
Diffstat (limited to 'scripts/release-common.sh')
-rwxr-xr-x | scripts/release-common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/release-common.sh b/scripts/release-common.sh index abfdeb8..a30d43a 100755 --- a/scripts/release-common.sh +++ b/scripts/release-common.sh @@ -236,7 +236,7 @@ echo "Creating archive.." case $OS in MACOSX) - /usr/libexec/PlistBuddy -c "Add :CFBundleVersion string $VERSIONDATE" OpenSCAD.app/Contents/Info.plist + /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $VERSIONDATE" OpenSCAD.app/Contents/Info.plist macdeployqt OpenSCAD.app -dmg -no-strip mv OpenSCAD.dmg OpenSCAD-$VERSION.dmg hdiutil internet-enable -yes -quiet OpenSCAD-$VERSION.dmg |