From ccf14292f02badeb123c27b2888263b01755d62c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 11 Feb 2020 11:26:11 -0800 Subject: [PATCH] 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 --- cmd/relaynode/debian/gen-changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/relaynode/debian/gen-changelog b/cmd/relaynode/debian/gen-changelog index 19a2795be..5b17d6f8a 100755 --- a/cmd/relaynode/debian/gen-changelog +++ b/cmd/relaynode/debian/gen-changelog @@ -18,7 +18,7 @@ def Describe(g): first = False else: 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) print(re.sub(r"SHA:([0-9a-f]+)", Describe, sys.stdin.read()))