From 2839dd2ace985ad79f3562f0da129df4eba17d04 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 9 Jun 2015 12:43:12 +0200 Subject: reproducible coreboot: ignore 'abuild' result directory --- bin/reproducible_coreboot.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 30a1fe7c..a3b0cad5 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 .. -- cgit v1.2.3-70-g09d2