-
-
Save BennettSmith/2190987 to your computer and use it in GitHub Desktop.
Unique Build Numbers for XCode 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# XCode 4 auto-versioning script for Git | |
# Inspired by the work of Axel Andersson, Marcus S. Zarra and Matt Long | |
# http://valthonis.net/u/19 | |
""" | |
NOTE: Due to its use of build environment variables, this | |
script will only work from inside XCode's build process! | |
""" | |
import os | |
import csv | |
from subprocess import Popen, PIPE | |
from Foundation import NSMutableDictionary | |
cmd = "/usr/local/bin/git rev-parse --short HEAD" # get the short commit hash from git | |
build_number = Popen(cmd, shell=True, stdout=PIPE).stdout.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 | |
plist.writeToFile_atomically_(info_plist, 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment