From 1dc94431ac54958bb7e2fa7b0a5282470dca037f Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Wed, 22 Nov 2023 00:24:07 +0100 Subject: [PATCH] Fixed bug ReleaseUpgrade not Updating 3-party repo's on Debian --- functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index c707d6b..cd06f31 100644 --- a/functions.sh +++ b/functions.sh @@ -172,7 +172,7 @@ UpgradeRelease () { $INSTCALL -- sh -c "DEBIAN_FRONTEND=noninteractive apt full-upgrade -y -o Dpkg::Options::="--force-confold"" # Update repo file(s) $INSTCALL -- sed -i "s/$RELNAME/$NewDebianVersion/g" /etc/apt/sources.list - $INSTCALL -- sh -c "sed -i "s/$RELNAME/$NewDebianVersion/g" /etc/apt/sources.list.d/\*" + $INSTCALL -- sh -c "sed -i "s/$RELNAME/$NewDebianVersion/g" /etc/apt/sources.list.d/*" # Run upgrade to new release $INSTCALL -- apt clean $INSTCALL -- apt update