From 17bd5689829b0716982479ba51a6e4cf20e3cde4 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sun, 18 Jun 2023 09:17:43 +0200 Subject: bin/get-package-updates: fix blacklisting * the sql wild card for "like" is "%", not "%s" --- bin/get-package-updates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/get-package-updates') diff --git a/bin/get-package-updates b/bin/get-package-updates index 46c2923..404c503 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -485,7 +485,7 @@ echo 'remove blacklisted packages' } \ | sort -u \ | while read -r arch pkgbase; do - delete_package "${arch}" "${pkgbase}" '%s' + delete_package "${arch}" "${pkgbase}" '%' done echo 'Done - mark decisions as final.' -- cgit v1.2.3-54-g00ecf