Commit 0a9f1037 authored by machenbach's avatar machenbach Committed by Commit bot

[release] Fix ambiguous tag names.

TBR=hablich@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/1885863003

Cr-Commit-Position: refs/heads/master@{#35442}
parent 5b5c3602
......@@ -240,7 +240,7 @@ class FixBrokenTag(Step):
if commit:
print "Found %s. Trying to repair tag and bail out." % self["version"]
self.Git("tag %s %s" % (self["version"], commit))
self.Git("push origin %s" % self["version"])
self.Git("push origin refs/tags/%s" % self["version"])
return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment