Skip to content

Commit

Permalink
Add workaround for iTC transporter outage
Browse files Browse the repository at this point in the history
Fixes #11958
  • Loading branch information
KrauseFx committed Mar 1, 2018
1 parent c045e0a commit 16af62e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions fastlane_core/lib/fastlane_core/itunes_transporter.rb
Expand Up @@ -33,6 +33,14 @@ class TransporterExecutor
def execute(command, hide_output)
return command if Helper.test?

# Workaround because the traditional transporter broke on 1st March 2018
# More information https://github.com/fastlane/fastlane/issues/11958
# As there was no communication from Apple,we don't know if this is a temporary
# server outage, or something they changed without giving a heads-up
if ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"].to_s.length == 0
ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
end

@errors = []
@warnings = []
@all_lines = []
Expand Down

0 comments on commit 16af62e

Please sign in to comment.