Skip to content
Snippets Groups Projects
Commit 9afee579 authored by Ronald Jäpel's avatar Ronald Jäpel
Browse files

Add option to use the output-commit-message for the master branch as well

parent cfa0efb4
No related branches found
No related tags found
No related merge requests found
...@@ -318,7 +318,7 @@ class ProjectRepo(BaseRepo): ...@@ -318,7 +318,7 @@ class ProjectRepo(BaseRepo):
""" """
self._output_repo._git.checkout(self._most_recent_branch) self._output_repo._git.checkout(self._most_recent_branch)
def update_output_master_logs(self): def update_output_master_logs(self, message=None):
""" """
Dumps all the metadata information about the project repositories state and Dumps all the metadata information about the project repositories state and
the commit hash and branch name of the ouput repository into the master branch of the commit hash and branch name of the ouput repository into the master branch of
...@@ -372,7 +372,9 @@ class ProjectRepo(BaseRepo): ...@@ -372,7 +372,9 @@ class ProjectRepo(BaseRepo):
self.copy_code(code_copy_folderpath) self.copy_code(code_copy_folderpath)
self._output_repo.add(".") self._output_repo.add(".")
self._output_repo._git.commit("-m", output_branch_name) if message is None:
message = output_branch_name
self._output_repo._git.commit("-m", message)
self._output_repo._git.checkout(output_branch_name) self._output_repo._git.checkout(output_branch_name)
self._most_recent_branch = output_branch_name self._most_recent_branch = output_branch_name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment