Accepting request 353018 from openSUSE:Tools

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/353018
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/build-compare?expand=0&rev=93
This commit is contained in:
Dominique Leuenberger 2016-01-16 10:55:35 +00:00 committed by Git OBS Bridge
commit 3addd3cb11
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jan 1 10:11:14 UTC 2016 - schwab@suse.de
- Fix quoting in find expression
-------------------------------------------------------------------
Thu Oct 22 06:29:44 UTC 2015 - olaf@aepfle.de

View File

@ -1,7 +1,7 @@
#
# spec file for package build-compare
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -21,7 +21,7 @@ Summary: Build Result Compare Script
License: GPL-2.0+
Group: Development/Tools/Building
Url: https://github.com/openSUSE/build-compare
Version: 20151022T083541.cd832db
Version: 20160104T085658.0b929c8
Release: 0
Source1: COPYING
Source2: same-build-result.sh

View File

@ -134,7 +134,7 @@ if test -n "$OTHERDIR"; then
SUCCESS=0
fi
appdatas=`cd $OTHERDIR && find . -name *-appdata.xml`
appdatas=$(cd $OTHERDIR && find . -name "*-appdata.xml")
for xml in $appdatas; do
# compare appstream data
if test -e $OLDDIR/$xml -a -e $OTHERDIR/$xml; then