document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/bash
  2.  
  3. release=`git tag | tail -n 1`
  4. build=`git log --oneline HEAD^1.. | awk \'{print $1 }\'`
  5. # build=`git log -n1 --date=short --format="%ad (%h)"`
  6. # Shows 2012-04-24 (5fb42cb)
  7. plist_path=`find . -type f -iname *.plist -d 2`
  8.  
  9. /usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString $release" $plist_path
  10. /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $build" $plist_path
');