aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-12 19:46:09 +0100
committerMichał Górny <mgorny@gentoo.org>2019-04-09 13:05:55 +0200
commitc9f134674a2cb723b9c854d68765befe0919400f (patch)
tree2abc8ed2517e1ce410b103a5d56b30eaca020b1d
parentpostrecv-bugs: process keywordings and stabilizations (diff)
downloadgithooks-c9f134674a2cb723b9c854d68765befe0919400f.tar.gz
githooks-c9f134674a2cb723b9c854d68765befe0919400f.tar.bz2
githooks-c9f134674a2cb723b9c854d68765befe0919400f.zip
postrecv-bugs: Support ALLARCHES
-rwxr-xr-xlocal/postrecv-bugs2
1 files changed, 1 insertions, 1 deletions
diff --git a/local/postrecv-bugs b/local/postrecv-bugs
index 2f0bef7..bdd89f7 100755
--- a/local/postrecv-bugs
+++ b/local/postrecv-bugs
@@ -54,7 +54,7 @@ while read -r oldrev newrev refname; do
split_msg=( ${l//// } )
for arch in "${ALL_ARCHES[@]}"; do
for word in "${split_msg[@]}"; do
- if [[ ${word} == ${arch} ]]; then
+ if [[ ${word} == ${arch} || ${word} == ALLARCHES ]]; then
uncc_this+=( "${arch}@gentoo.org" )
break
fi