Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created March 2, 2015 20:55
Show Gist options
  • Save jonathanpeppers/43f713f4cec3492208d6 to your computer and use it in GitHub Desktop.
Save jonathanpeppers/43f713f4cec3492208d6 to your computer and use it in GitHub Desktop.
Raygun helper for FAKE
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