Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created April 1, 2015 20:36
Show Gist options
  • Select an option

  • Save jonathanpeppers/027cfaf6063aa87cdb4e to your computer and use it in GitHub Desktop.

Select an option

Save jonathanpeppers/027cfaf6063aa87cdb4e to your computer and use it in GitHub Desktop.
Xcode FAKE helper
let Exec command args =
let result = Shell.Exec(command, args)
if result <> 0 then failwithf "%s exited with error %d" command result
let Xcode args =
Exec "xcodebuild" args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment