From: Bernhard Tittelbach Date: Wed, 9 Sep 2020 22:28:58 +0000 (+0200) Subject: torwaechter: fix bug in tuergit hook script that prevent script from executing X-Git-Url: https://git.realraum.at/?p=noc.git;a=commitdiff_plain;h=c8155f0116aae4d88698eded32c8afc64a28cf7f torwaechter: fix bug in tuergit hook script that prevent script from executing --- diff --git a/ansible/files/torwaechter/post-receive b/ansible/files/torwaechter/post-receive index c1fdc54..ec6070b 100755 --- a/ansible/files/torwaechter/post-receive +++ b/ansible/files/torwaechter/post-receive @@ -5,9 +5,9 @@ set -eu -keys_branch=$(git config hooks.keys_branch 2>/dev/null) -keys_file=$(git config hooks.keys_file 2>/dev/null) -keys_pipe_to=$(git config hooks.keys_pipe_to 2>/dev/null) +keys_branch=$(git config hooks.keys_branch 2>/dev/null || echo "") +keys_file=$(git config hooks.keys_file 2>/dev/null || echo "") +keys_pipe_to=$(git config hooks.keys_pipe_to 2>/dev/null || echo "") keys_branch=${keys_branch:-master} keys_file=${keys_file:-keys}