From 3e5c7cea92918324f31af77bc4c3a03e87e413b9 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Thu, 16 Aug 2007 12:48:45 +0000 Subject: [PATCH] Version update check: avoid unnecessary diff prints --- releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh b/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh index ea7deaaf9c6..7c52f0fb70a 100755 --- a/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh +++ b/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh @@ -196,13 +196,13 @@ elif [ `basename $SITE` = signedUpdates ]; then ls ../updates/2.0/features | sort > f2.$$.txt echo "wc old-features:" wc f1.$$.txt - diff f1.$$.txt f2.$$.txt + diff f1.$$.txt f2.$$.txt | grep -v '^[>]' echo "VERIFYING VERSION CORRECNESS: Plugins" ls plugins | grep -v '_[12]\.0\.1\.v' | sort > p1.$$.txt ls ../updates/2.0/plugins | sort > p2.$$.txt echo "wc old-plugins:" wc p1.$$.txt - diff p1.$$.txt p2.$$.txt + diff p1.$$.txt p2.$$.txt | grep -v '^[>]' rm f1.$$.txt f2.$$.txt p1.$$.txt p2.$$.txt elif [ `basename $SITE` = milestones ]; then echo "Working on milestone update site"