Created
March 2, 2015 20:55
-
-
Save jonathanpeppers/43f713f4cec3492208d6 to your computer and use it in GitHub Desktop.
Raygun 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 Raygun appId token dSym = | |
let dSymZipped = dSym + ".zip" | |
Exec "zip" ("-y -r " + dSymZipped + " " + dSym) | |
Exec "curl" ("-H 'Host: app.raygun.io' -H 'Authorization: Basic " + token + "' --form 'DsymFile=@" + dSymZipped + "' https://app.raygun.io/dashboard/"+ appId + "/settings/symbols") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment