remove debug lines

This commit is contained in:
Lance Vick 2023-01-19 14:07:13 -08:00
parent 043be12bab
commit 45bbee7161
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 0 additions and 2 deletions

2
sig
View File

@ -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}")