Gitian build (mac, linux): gzip => bzip2

This commit is contained in:
Jonathan Cross 2019-07-18 23:02:36 +02:00
parent fd3ff74164
commit f26e663a7b
No known key found for this signature in database
GPG key ID: D8578DF8EA7CCF1B
3 changed files with 4 additions and 4 deletions

View file

@ -104,7 +104,7 @@ script: |
make ${MAKEOPTS}
DISTNAME=monero-${i}
mv bin ${DISTNAME}
find ${DISTNAME}/ | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}.tar.gz
find ${DISTNAME}/ | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | bzip2 -9 > ${OUTDIR}/${DISTNAME}.tar.bz2
cd ..
rm -rf build
done