bin/match in match-0.4.0 vs bin/match in match-0.5.0
- old
+ new
@@ -80,9 +80,19 @@
Match::ChangePassword.update(params: params)
UI.success "Successfully changed the password. Make sure to update the password on all your clients and servers"
end
end
+ command :decrypt do |c|
+ c.syntax = "match decrypt"
+ c.description = "Decrypts the repository and keeps it on the filesystem"
+ c.action do |args, options|
+ params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
+ params.load_configuration_file("Matchfile")
+ decrypted_repo = Match::GitHelper.clone(params[:git_url], params[:shallow_clone])
+ UI.success "Repo is at: '#{decrypted_repo}'"
+ end
+ end
command "nuke" do |c|
# We have this empty command here, since otherwise the normal `match` command will be executed
c.syntax = "match nuke"
c.description = "Delete all certificates and provisioning profiles from the Apple Dev Portal"
c.action do |args, options|