diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-09 12:43:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-09 12:43:12 +0200 |
commit | 2839dd2ace985ad79f3562f0da129df4eba17d04 (patch) | |
tree | c80dd5a29024e93a94a474404dab52c9d43135f2 /bin | |
parent | c117552d782cbd1b34c12efa28b3e3a58aa8fcb4 (diff) | |
download | jenkins.debian.net-2839dd2ace985ad79f3562f0da129df4eba17d04.tar.xz |
reproducible coreboot: ignore 'abuild' result directory
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 9 |
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 .. |