lib/match/runner.rb in match-0.8.0 vs lib/match/runner.rb in match-0.8.1
- old
+ new
@@ -5,9 +5,11 @@
def run(params)
FastlaneCore::PrintTable.print_values(config: params,
hide_keys: [:workspace],
title: "Summary for match #{Match::VERSION}")
+ UI.error("Enterprise profiles are currently not officially supported in _match_, you might run into issues") if Match.enterprise?
+
params[:workspace] = GitHelper.clone(params[:git_url], params[:shallow_clone], skip_docs: params[:skip_docs], branch: params[:git_branch])
spaceship = SpaceshipEnsure.new(params[:username]) unless params[:readonly]
# Verify the App ID (as we don't want 'match' to fail at a later point)
spaceship.bundle_identifier_exists(params) if spaceship