From 117818462b21e0ba4933a1bcf9cac65249ce74c209fde1d51def628b67705cd6 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 16 Feb 2012 21:00:43 +0000 Subject: [PATCH] Updating link to change in openSUSE:Factory/build-compare revision 66.0 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/build-compare?expand=0&rev=27c1f4fdfdca4a93acea6de1567972c3 --- build-compare.changes | 5 +++++ same-build-result.sh | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/build-compare.changes b/build-compare.changes index a498d54..79daad7 100644 --- a/build-compare.changes +++ b/build-compare.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Feb 16 21:00:31 UTC 2012 - coolo@suse.com + +- fix missing test in shell script + ------------------------------------------------------------------- Thu Feb 16 13:39:21 UTC 2012 - coolo@suse.com diff --git a/same-build-result.sh b/same-build-result.sh index a1e718b..db630b1 100644 --- a/same-build-result.sh +++ b/same-build-result.sh @@ -106,7 +106,7 @@ if test -e $OLDDIR/rpmlint.log -a -e $OTHERDIR/rpmlint.log; then SUCCESS=0 fi rm $file1 $file2 -elif -e $OTHERDIR/rpmlint.log; then +elif test -e $OTHERDIR/rpmlint.log; then echo "rpmlint.log is new" SUCCESS=0 fi @@ -120,7 +120,7 @@ if test -e $OLDDIR/appdata.xml -a -e $OTHERDIR/appdata.xml; then diff -u0 $file1 $file2 |head -n 20 SUCCESS=0 fi -elif -e $OTHERDIR/appdata.xml; then +elif test -e $OTHERDIR/appdata.xml; then echo "appdata.xml is new" SUCCESS=0 fi