show the command used to create temporary tag

Change-Id: Ie13eddfe0fdc1268124a6e6c928ac4e7b93bc3c3
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann
2017-10-16 11:56:36 -04:00
parent 0ea15a31e8
commit 7fed957392

View File

@@ -248,6 +248,7 @@ def get_latest_tag(workdir, repo, sha=None):
def add_tag(workdir, repo, tag, sha):
cmd = ['git', 'tag', '-m', 'temporary tag', tag, sha]
try:
LOG.info(' '.join(cmd))
return subprocess.check_output(
cmd,
cwd=os.path.join(workdir, repo),