Skip to content

Commit

Permalink
Fixed notifications via testflight
Browse files Browse the repository at this point in the history
  • Loading branch information
drewmca03 committed Apr 16, 2013
1 parent 5c3413e commit 54ff9de
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -102,7 +102,10 @@ class TestFlightUploadTask extends DefaultTask {
entity.addPart("api_token", new StringBody(project.testflight.apiToken))
entity.addPart("team_token", new StringBody(project.testflight.teamToken))
entity.addPart("notes", new StringBody(project.testflight.notes))
entity.addPart("distribution_lists", new StringBody(project.testflight.distributionLists))
if (project.testflight.distributionLists != null){
entity.addPart("distribution_lists", new StringBody(project.testflight.distributionLists))
entity.addPart("notify", new StringBody("True"))
}
entity.addPart("file", new FileBody(ipaFile))
entity.addPart("dsym", new FileBody(dSYMFile))

Expand Down

0 comments on commit 54ff9de

Please sign in to comment.