From a984fac2ca463f3b355a70b5e4fe6b8ccf9b141d Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Tue, 24 May 2022 06:07:32 +0700 Subject: [PATCH] check-pkg-list: clean extra tab Fix for commit c11a9ca11b550ed916999fe2fa45def59bc94e22 Reported by andy@ --- bin/check-pkg-list | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check-pkg-list b/bin/check-pkg-list index 54bcb742..e7dbb647 100755 --- a/bin/check-pkg-list +++ b/bin/check-pkg-list @@ -42,7 +42,7 @@ check_pkglist() { # split pkgnames without wildcards and with wildcards grep -F -v '*' "$ftemp" > "$fpkgnames" - grep -F '*' "$ftemp" > "$fpkgwildcards" + grep -F '*' "$ftemp" > "$fpkgwildcards" # return unavailable packages comm -23 "$fpkgnames" "$favaillist" > "$fpkgerrors"