sigh/lib/sigh/commands_generator.rb in fastlane-2.181.0 vs sigh/lib/sigh/commands_generator.rb in fastlane-2.182.0
- old
+ new
@@ -1,7 +1,8 @@
require 'commander'
require 'fastlane/version'
+require 'fastlane_core/ui/help_formatter'
require_relative 'options'
require_relative 'resign'
require_relative 'local_manage'
require_relative 'manager'
@@ -21,10 +22,10 @@
program :version, Fastlane::VERSION
program :description, 'CLI for \'sigh\' - Because you would rather spend your time building stuff than fighting provisioning'
program :help, 'Author', 'Felix Krause <sigh@krausefx.com>'
program :help, 'Website', 'https://fastlane.tools'
program :help, 'Documentation', 'https://docs.fastlane.tools/actions/sigh/'
- 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 :renew do |c|