fastlane/lib/fastlane/commands_generator.rb in fastlane-2.98.0 vs fastlane/lib/fastlane/commands_generator.rb in fastlane-2.99.0
- old
+ new
@@ -99,9 +99,10 @@
command :trigger do |c|
c.syntax = 'fastlane [lane]'
c.description = 'Run a specific lane. Pass the lane name and optionally the platform first.'
c.option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`')
c.option('--disable_runner_upgrades', 'Prevents fastlane from attempting to update FastlaneRunner swift project')
+ c.option('--swift_server_port INT', 'Set specific port to communicate between fastlane and FastlaneRunner')
c.action do |args, options|
if ensure_fastfile
Fastlane::CommandLineHandler.handle(args, options)
end