aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlocal/postrecv-bugs4
1 files changed, 2 insertions, 2 deletions
diff --git a/local/postrecv-bugs b/local/postrecv-bugs
index ece65b0..705078c 100755
--- a/local/postrecv-bugs
+++ b/local/postrecv-bugs
@@ -10,10 +10,10 @@ export TZ=UTC
shopt -o -s noglob
-ALLOWED_BRANCHES=$(git config --get gentoo.bugs.allowed_branches)
+ALLOWED_BRANCHES=$(git config --get gentoo.bugs.allowed-branches)
while read -r oldrev newrev refname; do
- # operate only on branches in gentoo.bugs.allowed_branches
+ # operate only on branches in gentoo.bugs.allowed-branches
# (or 'master' if unset)
allowed=0
for allowed_branch in ${ALLOWED_BRANCHES:-master}; do