match/lib/match/commands_generator.rb in fastlane_hotfix-2.165.1 vs match/lib/match/commands_generator.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -1,8 +1,9 @@
require 'commander'
require 'fastlane_core/configuration/configuration'
+require 'fastlane_core/ui/help_formatter'
require_relative 'nuke'
require_relative 'change_password'
require_relative 'setup'
require_relative 'runner'
@@ -30,10 +31,10 @@
program :version, Fastlane::VERSION
program :description, Match::DESCRIPTION
program :help, 'Author', 'Felix Krause <match@krausefx.com>'
program :help, 'Website', 'https://fastlane.tools'
program :help, 'Documentation', 'https://docs.fastlane.tools/actions/match/'
- program :help_formatter, :compact
+ program :help_formatter, FastlaneCore::HelpFormatter
global_option('--verbose') { FastlaneCore::Globals.verbose = true }
global_option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`')
command :run do |c|