fastlane/lib/fastlane/commands_generator.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/commands_generator.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -1,7 +1,8 @@
require 'commander'
require 'fastlane/new_action'
+require 'fastlane_core/ui/help_formatter'
HighLine.track_eof = false
module Fastlane
class CommandsGenerator
@@ -83,10 +84,10 @@
"\tTo pass values to the lanes use `fastlane [platform] [lane_name] key:value key2:value2`"
].join("\n")
program :help, 'Author', 'Felix Krause <fastlane@krausefx.com>'
program :help, 'Website', 'https://fastlane.tools'
program :help, 'GitHub', 'https://github.com/fastlane/fastlane'
- program :help_formatter, :compact
+ program :help_formatter, FastlaneCore::HelpFormatter
global_option('--verbose') { FastlaneCore::Globals.verbose = true }
global_option('--capture_output', 'Captures the output of the current run, and generates a markdown issue template') do
FastlaneCore::Globals.capture_output = false
FastlaneCore::Globals.verbose = true