Skip to content

Instantly share code, notes, and snippets.

@hirohitokato
Forked from kishikawakatsumi/gist:1202516
Created September 8, 2011 03:18
Show Gist options
  • Save hirohitokato/1202527 to your computer and use it in GitHub Desktop.
Save hirohitokato/1202527 to your computer and use it in GitHub Desktop.
import os
import csv
from subprocess import Popen, PIPE
from Foundation import NSMutableDictionary
build_number = os.popen4("git rev-parse --short HEAD")[1].read()
info_plist = os.environ['BUILT_PRODUCTS_DIR'] + "/" + os.environ['WRAPPER_NAME'] + "/Info.plist"
# Open the plist and write the short commit hash as the bundle version
plist = NSMutableDictionary.dictionaryWithContentsOfFile_(info_plist)
core_version = csv.reader([plist['CFBundleVersion'].rstrip()], delimiter=" ").next()[0]
full_version = ''.join([core_version, ' build ', build_number])
plist['CFBundleVersion'] = full_version.rstrip()
plist.writeToFile_atomically_(info_plist, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment