diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-13 10:32:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-13 10:32:45 +0200 |
commit | 3809618850d039d81fec32a01faf22c79d352b64 (patch) | |
tree | 57d40f9612b5dd5a0b047df7d7342bce5505766f /bin | |
parent | 5b4fb195cbd80a8b3446b38f9fee80eeb3f21ed2 (diff) | |
download | jenkins.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-x | bin/reproducible_openwrt.sh | 10 |
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 |