summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_coreboot.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-09 12:43:12 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-09 12:43:12 +0200
commit2839dd2ace985ad79f3562f0da129df4eba17d04 (patch)
treec80dd5a29024e93a94a474404dab52c9d43135f2 /bin/reproducible_coreboot.sh
parentc117552d782cbd1b34c12efa28b3e3a58aa8fcb4 (diff)
downloadjenkins.debian.net-2839dd2ace985ad79f3562f0da129df4eba17d04.tar.xz
reproducible coreboot: ignore 'abuild' result directory
Diffstat (limited to 'bin/reproducible_coreboot.sh')
-rwxr-xr-xbin/reproducible_coreboot.sh9
1 files changed, 6 insertions, 3 deletions
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 ..