From b03d116ca68f026648710b0ce419e8407875353e Mon Sep 17 00:00:00 2001 From: John McQuah Date: Sat, 4 Jun 2022 14:57:45 -0400 Subject: [PATCH] pkgmeek: quieter progress report for the options '-us','-uf','-um','-cs' --- scripts/pkgmeek | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/pkgmeek b/scripts/pkgmeek index 09b9a19..9c6f8ae 100755 --- a/scripts/pkgmeek +++ b/scripts/pkgmeek @@ -91,7 +91,9 @@ check_pkg_mtime; pkg_utd=$? || { info "$package is up to date, use '-f' to force a rebuild."; exit 0; } # Silence the progress report if the user never intended to proceed with unpacking -[ "$pkg_utd" = 1 ] || [ "$PKGMK_CHECK_SIG" = "yes" ] || echo "Checking signatures before unpacking..." +[ "$pkg_utd" = 1 ] || [[ "$PKGMK_CHECK_SIG $PKGMK_UPDATE_SIG" =~ yes ]] || \ + [[ "$PKGMK_UPDATE_FOOTPRINT $PKGMK_UPDATE_MD5" =~ yes ]] || \ + echo "Checking signatures before unpacking..." # The option -uf is meant to be used AFTER a previous invocation of pkgmeek has # alerted the user to a footprint mismatch. The options -us|-um are likewise meant