mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
debian: fix changelog generation.
It seems changelog generation got broken by moving the code between corp and OSS repos, because one of the commit SHAs doesn't have an associated tag. In the interest of fixing the build, and because we're not yet trying to upstream the debian package, I fixed this by allowing hash-based versions to show up in the changelog. This maybe wrong from a debian standards perspective, but for our current point in life it'll work until we learn to do it better. Signed-Off-By: David Anderson <dave@natulte.net>
This commit is contained in:
parent
595325c716
commit
ea11d58e96
@ -18,7 +18,7 @@ def Describe(g):
|
|||||||
first = False
|
first = False
|
||||||
else:
|
else:
|
||||||
sha = g.group(1)
|
sha = g.group(1)
|
||||||
s = subprocess.check_output(["git", "describe", "--", sha]).strip().decode("utf-8")
|
s = subprocess.check_output(["git", "describe", "--always", "--", sha]).strip().decode("utf-8")
|
||||||
return re.sub(r"^\D*", "", s)
|
return re.sub(r"^\D*", "", s)
|
||||||
|
|
||||||
print(re.sub(r"SHA:([0-9a-f]+)", Describe, sys.stdin.read()))
|
print(re.sub(r"SHA:([0-9a-f]+)", Describe, sys.stdin.read()))
|
||||||
|
Loading…
Reference in New Issue
Block a user