From 7553ea11aae7dd34859e7f502f8d8a537033e293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Guzm=C3=A1n?= Date: Wed, 24 Jul 2024 16:09:49 +0000 Subject: [PATCH] config: add option to set security component on helper. --- helpers/config | 1 + 1 file changed, 1 insertion(+) diff --git a/helpers/config b/helpers/config index e6b207a..27a84ab 100755 --- a/helpers/config +++ b/helpers/config @@ -67,6 +67,7 @@ find ${@:3} -type f -not -iregex '.*changelog.*' -not -iregex '.*copyright.*' -e } changelog(){ head -n 1 debian/changelog | grep -q $UPSTREAM-security && REPO=$CODENAME-security || REPO=$CODENAME +[ "$SECURITY" = true ] && REPO=${CODENAME}-security [ "$BACKPORT" = true ] || [ "$BACKPORTS" = true ] && REPO=${CODENAME}-backports #Name convention issue "+" breaking packages build like console-setup, using "-" instead. echo | dch -D $REPO -v $FULLVERSION "$1"