Created
March 2, 2015 20:47
-
-
Save jonathanpeppers/913fff7ac197076671e1 to your computer and use it in GitHub Desktop.
Exec helper for FAKE
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
let Exec command args = | |
let result = Shell.Exec(command, args) | |
if result <> 0 then failwithf "%s exited with error %d" command result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment