From 9314ac94911bb6d29380b3d60d568c6b6b488de2 Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Mon, 8 Jan 2018 19:08:15 +0100 Subject: Fix invalid "@@ARCH" reference in template --- templates/commit-header | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/commit-header b/templates/commit-header index 76f65b4..0b7a343 100644 --- a/templates/commit-header +++ b/templates/commit-header @@ -1,7 +1,7 @@ #!/bin/bash pushd @@REPODIR@@ > /dev/null -if [ "@@NEWKEYWORD@@" = "@@ARCH" ]; then +if [ "@@NEWKEYWORD@@" = "@@ARCH@@" ]; then DESCR="@@ARCH@@ stable (bug #@@BUG@@)" else DESCR="@@ARCH@@ keyworded (bug #@@BUG@@)" -- cgit v1.2.3-65-gdbad