Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created March 2, 2015 20:47
Show Gist options
  • Save jonathanpeppers/df19449263c189d52d5f to your computer and use it in GitHub Desktop.
Save jonathanpeppers/df19449263c189d52d5f to your computer and use it in GitHub Desktop.
Plist helper for FAKE
let UpdatePlist shortVersion version project =
let info = Path.Combine(project, "Info.plist")
Exec "/usr/libexec/PlistBuddy" ("-c 'Set :CFBundleShortVersionString " + shortVersion + "' " + info)
Exec "/usr/libexec/PlistBuddy" ("-c 'Set :CFBundleVersion " + version + "' " + info)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment