From bebb570999bb830a0a91fac6f19f57214edd9577 Mon Sep 17 00:00:00 2001 From: John McQuah Date: Sat, 18 Feb 2023 21:34:37 -0500 Subject: [PATCH] pkgmeek: honor --extract-only even if an up-to-date package is present --- scripts/pkgmeek | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pkgmeek b/scripts/pkgmeek index b9cf00d..b59da2c 100755 --- a/scripts/pkgmeek +++ b/scripts/pkgmeek @@ -124,7 +124,7 @@ case $? in esac; } [ "$PKGMK_CHECK_SIG" = "no" ] || { cleanup_work; exit 0; } # no need to continue if the user only requested -cs -if [ "$pkg_utd" = 0 ] || [ "$PKGMK_FORCE" = "yes" ]; then +if [ "$pkg_utd" = 0 ] || [[ "$PKGMK_FORCE $PKGMK_EXTRACT_ONLY" =~ yes ]]; then if [ "$(type -t unpack_source)" = "function" ]; then SRC=$PWD/src unpack_source || errUZ+=1 else