The Birdfont Source Code
Use xz compression for tar archives
These changes was commited to the Birdfont repository Wed, 25 Mar 2015 16:30:29 +0000.
Contributing
Send patches or pull requests to johan.mattsson.m@gmail.com.
Clone this repository: git clone https://github.com/johanmattssonm/birdfont.git
Use xz compression for tar archives
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -34,17 +34,17 @@
tar -cf birdfont-$version.tar birdfont-$version
- gzip birdfont-$version.tar
+ xz -z birdfont-$version.tar
- rm -rf ../birdfont-$version.tar.gz
+ rm -rf ../birdfont-$version.tar.xz
- mv birdfont-$version.tar.gz ../
+ mv birdfont-$version.tar.xz ../
# build it to make sure that everything was checked in
cd birdfont-$version && \
./configure && \
./scripts/linux_build.py && \
- gpg --output ../../birdfont-$version.tar.gz.sig --detach-sig ../../birdfont-$version.tar.gz && \
+ gpg --output ../../birdfont-$version.tar.xz.sig --detach-sig ../../birdfont-$version.tar.xz && \
cd .. && \
rm -rf ../export/birdfont-$version