From 8db4607c07d2bef27ecd855910d38954d0f5b9dc Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 1 Dec 2021 11:07:39 +0900 Subject: [PATCH] signbot: Be more verbose when refusing to sign builds Signbot refuses to sign builds if they were unsuccessful, however it does not print any information about the build it refused to sign. This commit modifies signbot to print additional information about the refused build. --- signbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signbot.sh b/signbot.sh index f31e528..7c6c151 100755 --- a/signbot.sh +++ b/signbot.sh @@ -53,7 +53,7 @@ handle_build_message() { if ! is_digits "$result" || (( result != 0 )); then - log_warn "Refusing to sign failed build" + log_warn "Not signing $repository#$branch [$ref] (build result was $result)" return 1 fi -- 2.47.3