match/lib/match/storage/git_storage.rb in fastlane-2.111.0.beta.20181211193527 vs match/lib/match/storage/git_storage.rb in fastlane-2.111.0.beta.20181213171204
- old
+ new
@@ -94,9 +94,13 @@
end
checkout_branch unless self.branch == "master"
end
+ def human_readable_description
+ "Git Repo [#{self.git_url}]"
+ end
+
def delete_files(files_to_delete: [], custom_message: nil)
# No specific list given, e.g. this happens on `fastlane match nuke`
# We just want to run `git add -A` to commit everything
git_push(commands: ["git add -A"], commit_message: custom_message)
end