summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-13 10:32:45 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-13 10:32:45 +0200
commit3809618850d039d81fec32a01faf22c79d352b64 (patch)
tree57d40f9612b5dd5a0b047df7d7342bce5505766f /bin
parent5b4fb195cbd80a8b3446b38f9fee80eeb3f21ed2 (diff)
downloadjenkins.debian.net-3809618850d039d81fec32a01faf22c79d352b64.tar.xz
reproducible openwrt: stop renaming *.bin to *.bin.squashfs because debbindiff needs to learn to deal with them anyway and because they are not simple squashfs filesystems
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_openwrt.sh10
1 files changed, 1 insertions, 9 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index a34b88f7..f8ac938a 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -73,15 +73,7 @@ save_openwrt_results(){
# save images
mkdir -p $TMPDIR/$RUN/$i
for j in $(find . -name "*.bin" -exec basename \{\} \; ) ; do
- # rename *-squashfs*.bin to *.bin.squashfs
- # (needed for debbindiff 20)
- if (echo $j| grep -q -- '-squashfs') ; then
- k=$(echo $j| sed "s#-squashfs##g")
- k=${j}.squashfs
- else
- k=$j
- fi
- cp -p $j $TMPDIR/$RUN/$i/$k
+ cp -p $j $TMPDIR/$RUN/$i/
done
# save packages
cd packages