[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible coreboot: ignore 'abuild' result directory

Holger Levsen holger at moszumanska.debian.org
Tue Jun 9 10:43:40 UTC 2015


This is an automated email from the git hooks/post-receive script.

holger pushed a commit to branch master
in repository jenkins.debian.net.

commit 2839dd2ace985ad79f3562f0da129df4eba17d04
Author: Holger Levsen <holger at layer-acht.org>
Date:   Tue Jun 9 12:43:12 2015 +0200

    reproducible coreboot: ignore 'abuild' result directory
---
 bin/reproducible_coreboot.sh | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh
index 30a1fe7..a3b0cad 100755
--- a/bin/reproducible_coreboot.sh
+++ b/bin/reproducible_coreboot.sh
@@ -122,9 +122,12 @@ nice ionice -c 3 \
 
 cd coreboot-builds
 for i in * ; do
-	mkdir $TMPDIR/b1/$i
-	if [ -f $i/coreboot.rom ] ; then
-		cp -p $i/coreboot.rom $TMPDIR/b1/$i/
+	# abuild is a build result but not the result we are looking for...
+	if [ "$i" != "abuild" ] ; then
+		mkdir $TMPDIR/b1/$i
+		if [ -f $i/coreboot.rom ] ; then
+			cp -p $i/coreboot.rom $TMPDIR/b1/$i/
+		fi
 	fi
 done
 cd ..

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git



More information about the Qa-jenkins-scm mailing list