2013-06-19 04:03:08 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-12-09 01:39:14 +03:00
|
|
|
SHELL_APP_DIR=$1
|
2013-12-05 14:13:42 +04:00
|
|
|
VERSION=$2
|
2015-12-09 01:39:14 +03:00
|
|
|
|
|
|
|
PLIST_PATH="$SHELL_APP_DIR/Contents/Info.plist"
|
|
|
|
HELPER_PLIST_PATH="$SHELL_APP_DIR/Contents/Frameworks/Atom Helper.app/Contents/Info.plist"
|
2013-06-19 04:03:08 +04:00
|
|
|
|
|
|
|
# Update version
|
|
|
|
/usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString $VERSION" "$PLIST_PATH"
|
|
|
|
/usr/libexec/PlistBuddy -c "Set CFBundleVersion $VERSION" "$PLIST_PATH"
|
|
|
|
/usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString $VERSION" "$HELPER_PLIST_PATH"
|
|
|
|
/usr/libexec/PlistBuddy -c "Set CFBundleVersion $VERSION" "$HELPER_PLIST_PATH"
|