diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-07-23 19:07:35 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-23 13:30:25 -0400 |
commit | 235300a73ae5aff1ed84ebee14d778904021cbc5 (patch) | |
tree | 30fb494c347b2b91a27cf59ba45d6c3d75ea3b9d | |
parent | 270066ccae1e1f99e838e6da9895e8567239a42e (diff) | |
download | jenkins.debian.net-235300a73ae5aff1ed84ebee14d778904021cbc5.tar.xz |
openwrt/lede: add forgotten arg to create_results_dir on the second run
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_lede.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_openwrt.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_lede.sh b/bin/reproducible_lede.sh index 712b488c..3c4d77e9 100755 --- a/bin/reproducible_lede.sh +++ b/bin/reproducible_lede.sh @@ -138,7 +138,7 @@ GOOD_PERCENT_IMAGES=$(echo "scale=1 ; ($GOOD_IMAGES*100/$ALL_IMAGES)" | bc) # run diffoscope on the packages GOOD_PACKAGES=0 ALL_PACKAGES=0 -create_results_dirs +create_results_dirs lede cd $TMPDIR/b1 for i in * ; do cd $i diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 3e523aaa..3f37ea29 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -138,7 +138,7 @@ GOOD_PERCENT_IMAGES=$(echo "scale=1 ; ($GOOD_IMAGES*100/$ALL_IMAGES)" | bc) # run diffoscope on the packages GOOD_PACKAGES=0 ALL_PACKAGES=0 -create_results_dirs +create_results_dirs openwrt cd $TMPDIR/b1 for i in * ; do cd $i |