[Dev] Remove useless output line

This commit is contained in:
samuel 2023-05-03 11:52:58 +02:00
parent 30dc6bc29b
commit 5245f85581
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ main() (
if [ -z "${git_runner_groupname}" ]; then if [ -z "${git_runner_groupname}" ]; then
fail "Variable git_runner_groupname is empty." "${err_git_runner_groupname_empty}" fail "Variable git_runner_groupname is empty." "${err_git_runner_groupname_empty}"
fi fi
if ! getent group "${git_runner_groupname}"; then if ! getent group "${git_runner_groupname}" >/dev/null; then
fail "Git-runner group '${git_runner_groupname}' does not exist." \ fail "Git-runner group '${git_runner_groupname}' does not exist." \
"${err_git_runner_group_not_exist}" "${err_git_runner_group_not_exist}"
fi fi