mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-31 20:48:56 +00:00
Don't process the whole commit
https://bugzilla.gnome.org/show_bug.cgi?id=796655
This commit is contained in:
parent
b4015f7bbe
commit
d3ea533b20
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ def checkout_worktree(repo_name, repo_dir, worktree_dir, branch):
|
|||
|
||||
return False
|
||||
|
||||
commit_message = git("show", repository_path=repo_dir).split("\n")
|
||||
commit_message = git("show", "--shortstat", repository_path=repo_dir).split("\n")
|
||||
print(u" -> %s%s%s - %s" % (Colors.HEADER, repo_dir, Colors.ENDC,
|
||||
commit_message[4].strip()))
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ def update_repo(repo_name, repo_dir, revision, no_interaction, recurse_i=0):
|
|||
return False
|
||||
|
||||
|
||||
commit_message = git("show", repository_path=repo_dir).split("\n")
|
||||
commit_message = git("show", "--shortstat", repository_path=repo_dir).split("\n")
|
||||
print(u" -> %s%s%s - %s" % (Colors.HEADER, commit_message[0][7:14], Colors.ENDC,
|
||||
commit_message[4].strip()))
|
||||
|
||||
|
|
Loading…
Reference in a new issue