From 3da3a5486f93e7b5a62ca18f4271a4b0d3a0380b Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 24 Aug 2011 10:18:28 +0200 Subject: checkpkg: Use a pipe to sort package lists No need to do this after we already wrote the package list to a file. Signed-off-by: Lukas Fleischer Signed-off-by: Pierre Schmitz --- checkpkg | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/checkpkg b/checkpkg index 2f442c9..94a7529 100755 --- a/checkpkg +++ b/checkpkg @@ -69,11 +69,8 @@ for _pkgname in "${pkgname[@]}"; do fi fi - bsdtar tf "$oldpkg" > "filelist-$_pkgname-old" - bsdtar tf "$pkgfile" > "filelist-$_pkgname" - - sort -o "filelist-$_pkgname" "filelist-$_pkgname" - sort -o "filelist-$_pkgname-old" "filelist-$_pkgname-old" + bsdtar tf "$oldpkg" | sort > "filelist-$_pkgname-old" + bsdtar tf "$pkgfile" | sort > "filelist-$_pkgname" sdiff -s "filelist-$_pkgname-old" "filelist-$_pkgname" -- cgit v1.2.3-24-g4f1b