2013-10-11 08:31:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-10-13 00:53:59 +00:00
|
|
|
hg_version=$(/usr/local/bin/hg log -r . --template '{latesttag}-{latesttagdistance}-{node|short}')
|
2013-10-11 08:31:13 +00:00
|
|
|
|
|
|
|
build_time=$(date)
|
|
|
|
|
2013-10-13 00:53:59 +00:00
|
|
|
echo "hg_version=${hg_version}"
|
|
|
|
echo "build_time=${build_time}"
|
|
|
|
|
|
|
|
info_plist="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}"
|
2013-10-11 08:31:13 +00:00
|
|
|
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion '${hg_version}'" "${info_plist}"
|
|
|
|
/usr/libexec/PlistBuddy -c "Add :BuildTime date '${build_time}'" "${info_plist}"
|
|
|
|
|
2013-10-13 00:53:59 +00:00
|
|
|
exit 0
|