diff options
-rwxr-xr-x | bin/reproducible_openwrt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 74d739d5..32e268e5 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -78,8 +78,8 @@ save_openwrt_results(){ # save packages cd packages for j in $(find * -name "*.ipk") ; do - mkdir -p $TMPDIR/$RUN/$i/ipk/$(dirname $j) - cp -p $j $TMPDIR/$RUN/$i/ipk/$(dirname $j)/ + mkdir -p $TMPDIR/$RUN/$i/$(dirname $j) + cp -p $j $TMPDIR/$RUN/$i/$(dirname $j)/ done cd ../.. done |