cert/lib/cert/commands_generator.rb in fastlane-2.181.0 vs cert/lib/cert/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 'fastlane_core/configuration/configuration' require 'fastlane_core/globals' require_relative 'options' require_relative 'runner' @@ -21,10 +22,10 @@ program :version, Fastlane::VERSION program :description, 'CLI for \'cert\' - Create new iOS code signing certificates' program :help, 'Author', 'Felix Krause <cert@krausefx.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'Documentation', 'https://docs.fastlane.tools/actions/cert/' - 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 :create do |c|