From 2e67e7c81efe3c68d5075ec724c25a6af9c5555f Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Wed, 9 Nov 2022 16:24:00 -0500 Subject: [PATCH] Ensure we fetch the source package matching the helper name --- helpers/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/config b/helpers/config index fe1cf0b..5e30da6 100755 --- a/helpers/config +++ b/helpers/config @@ -146,9 +146,9 @@ cd PACKAGES/$PACKAGE #Get package and uncompress it apt-get update -c $LOCAL_APT/etc/apt.conf if [ -n "$FIXED_VER" ]; then - apt-get source $PACKAGE=$FIXED_VER --download-only -c ${LOCAL_APT}/etc/apt.conf + apt-get source --only-source $PACKAGE=$FIXED_VER --download-only -c ${LOCAL_APT}/etc/apt.conf else - apt-get source $PACKAGE --download-only -c ${LOCAL_APT}/etc/apt.conf + apt-get source --only-source $PACKAGE --download-only -c ${LOCAL_APT}/etc/apt.conf fi # Verify it first if grep -q "BEGIN PGP SIGNATURE" *.dsc; then