diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-01-08 19:08:15 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-01-08 19:08:15 +0100 |
commit | 9314ac94911bb6d29380b3d60d568c6b6b488de2 (patch) | |
tree | 616efdc58ef08ff6ed62333ade205d36ef2fc25a | |
parent | do not write "stable" in commit message for keywording bugs (diff) | |
download | tatt-9314ac94911bb6d29380b3d60d568c6b6b488de2.tar.gz tatt-9314ac94911bb6d29380b3d60d568c6b6b488de2.tar.bz2 tatt-9314ac94911bb6d29380b3d60d568c6b6b488de2.zip |
Fix invalid "@@ARCH" reference in template
-rw-r--r-- | templates/commit-header | 2 |
1 files changed, 1 insertions, 1 deletions
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@@)" |