cert/lib/cert/commands_generator.rb in fastlane-2.6.0 vs cert/lib/cert/commands_generator.rb in fastlane-2.7.0
- old
+ new
@@ -23,20 +23,20 @@
global_option('--verbose') { $verbose = true }
FastlaneCore::CommanderGenerator.new.generate(Cert::Options.available_options)
command :create do |c|
- c.syntax = 'cert create'
+ c.syntax = 'fastlane cert create'
c.description = 'Create new iOS code signing certificates'
c.action do |args, options|
Cert.config = FastlaneCore::Configuration.create(Cert::Options.available_options, options.__hash__)
Cert::Runner.new.launch
end
end
command :revoke_expired do |c|
- c.syntax = 'cert revoke_expired'
+ c.syntax = 'fastlane cert revoke_expired'
c.description = 'Revoke expired iOS code signing certificates'
c.action do |args, options|
Cert.config = FastlaneCore::Configuration.create(Cert::Options.available_options, options.__hash__)
Cert::Runner.new.revoke_expired_certs!