produce/lib/produce/commands_generator.rb in fastlane-2.181.0 vs produce/lib/produce/commands_generator.rb in fastlane-2.182.0

- old
+ new

@@ -1,8 +1,9 @@ require 'commander' require 'fastlane/version' +require 'fastlane_core/ui/help_formatter' require 'fastlane_core/configuration/config_item' require_relative 'module' require_relative 'manager' require_relative 'options' @@ -21,10 +22,10 @@ program :version, Fastlane::VERSION program :description, 'CLI for \'produce\'' program :help, 'Author', 'Felix Krause <produce@krausefx.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'Documentation', 'https://docs.fastlane.tools/actions/produce/' - 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|