fastlane/lib/fastlane/actions/deploygate.rb in fastlane-2.43.0.beta.20170629010015 vs fastlane/lib/fastlane/actions/deploygate.rb in fastlane-2.43.0
- old
+ new
@@ -28,9 +28,10 @@
options.update({
token: api_token,
file: Faraday::UploadIO.new(binary, 'application/octet-stream'),
message: options[:message] || ''
})
+ options[:disable_notify] = 'yes' if options[:disable_notify]
connection.post("/api/users/#{user_name}/apps", options)
rescue Faraday::Error::TimeoutError
UI.crash! "Timed out while uploading build. Check https://deploygate.com/ to see if the upload was completed."
end