pilot/lib/pilot/build_manager.rb in fastlane-2.83.0.beta.20180226050016 vs pilot/lib/pilot/build_manager.rb in fastlane-2.83.0

- old
+ new

@@ -90,9 +90,15 @@ rescue => ex UI.user_error!("Could not set changelog: #{ex}") end end + if config[:notify_external_testers] + build.auto_notify_enabled = config[:notify_external_testers] + else + build.auto_notify_enabled = true + end + return if config[:skip_submission] distribute_build(build, options) type = options[:distribute_external] ? 'External' : 'Internal' UI.success("Successfully distributed build to #{type} testers 🚀") end