From 45bbee71613314576ef27a55d1cb049b7e0da434 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Thu, 19 Jan 2023 14:07:13 -0800 Subject: [PATCH] remove debug lines --- sig | 2 -- 1 file changed, 2 deletions(-) diff --git a/sig b/sig index 0182240..6c39ca1 100755 --- a/sig +++ b/sig @@ -480,7 +480,6 @@ cmd_verify() { local -r head=$(git rev-parse --short HEAD) if [ ! -z "$diff" ] && [ -z "$ref" ]; then - echo "automode" while read -r commit; do echo "Checking commit: $commit" if verify "$threshold" "$group" "$commit"; then @@ -489,7 +488,6 @@ cmd_verify() { fi done <<< "$(git log --show-notes=signatures --pretty=format:"%H")" else - echo "single" if verify "$threshold" "$group" "$ref"; then if [ ! -z "$diff" ] && [ ! -z "$ref" ]; then local -r commit=$(git rev-parse --short "${ref}")