fastlane/lib/fastlane/commands_generator.rb in fastlane-2.67.0 vs fastlane/lib/fastlane/commands_generator.rb in fastlane-2.68.0.beta.20171129010003
- old
+ new
@@ -216,13 +216,14 @@
end
command :enable_auto_complete do |c|
c.syntax = 'fastlane enable_auto_complete'
c.description = 'Enable tab auto completion'
+ c.option '-c STRING[,STRING2]', '--custom STRING[,STRING2]', String, 'Add custom command(s) for which tab auto complete should be enabled too'
c.action do |args, options|
require 'fastlane/auto_complete'
- Fastlane::AutoComplete.execute
+ Fastlane::AutoComplete.execute(args, options)
end
end
command :env do |c|
c.syntax = 'fastlane env'