Change version numbering algorithm
parent
fedc271b8c
commit
5b914831d2
|
@ -1,14 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
git_version=$(/usr/bin/git describe --tags)
|
||||
git_version=$(/usr/bin/git describe --tags --first-parent | sed -e 's/k54-//')
|
||||
short_version=${git_version%-*}
|
||||
|
||||
build_time=$(date)
|
||||
|
||||
echo "git_version=${git_version}"
|
||||
echo "short_version=${short_version}"
|
||||
echo "build_time=${build_time}"
|
||||
|
||||
info_plist="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}"
|
||||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion '${git_version}'" "${info_plist}"
|
||||
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString '${short_version}'" "${info_plist}"
|
||||
/usr/libexec/PlistBuddy -c "Add :BuildTime date '${build_time}'" "${info_plist}"
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue