mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-24 04:32:46 +00:00
explain how automatic tagging was done
This commit is contained in:
parent
9ec23a6286
commit
856a4968f8
1 changed files with 2 additions and 1 deletions
|
@ -499,7 +499,8 @@ class VersionTagger(ConfigObject):
|
||||||
raise TitoException('Unknown placeholder %s in tag_commit_message_format'
|
raise TitoException('Unknown placeholder %s in tag_commit_message_format'
|
||||||
% exc)
|
% exc)
|
||||||
|
|
||||||
run_command('git commit -m %s' % quote(msg))
|
run_command('git commit -m {0} -m {1} -m {2}'.format(
|
||||||
|
quote(msg), quote("Created by command:"), quote(" ".join(sys.argv[:]))))
|
||||||
|
|
||||||
tag_msg = "Tagging package [%s] version [%s] in directory [%s]." % \
|
tag_msg = "Tagging package [%s] version [%s] in directory [%s]." % \
|
||||||
(self.project_name, new_version_w_suffix,
|
(self.project_name, new_version_w_suffix,
|
||||||
|
|
Loading…
Add table
Reference in a new issue