diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-10-02 22:58:39 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-10-02 22:58:39 +0200 |
commit | cf470cec74f18427b6ea484ca6f16a6fe1ecd35c (patch) | |
tree | ce389476b15f7d7cd2b159b947c0bc337b937cb7 | |
parent | 844eb18378ca1be65418a50c04b62560fe7181e3 (diff) | |
download | poezio-cf470cec74f18427b6ea484ca6f16a6fe1ecd35c.tar.gz poezio-cf470cec74f18427b6ea484ca6f16a6fe1ecd35c.tar.bz2 poezio-cf470cec74f18427b6ea484ca6f16a6fe1ecd35c.tar.xz poezio-cf470cec74f18427b6ea484ca6f16a6fe1ecd35c.zip |
update.sh: fix the tar arguments to work with bsdtar as well.
-rwxr-xr-x | update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,14 +35,14 @@ then echo "dnspython up to date" else echo "Restoring dnspython" - tar xf .dnspython.tgz + tar xzf .dnspython.tgz mv dnspython3-1.10.0 dnspython fi else echo "Downloading dnspython" wget -c -q -O .dnspython.tgz http://www.dnspython.org/kits3/1.10.0/dnspython3-1.10.0.tar.gz rm -fr dnspython - tar xf .dnspython.tgz + tar xzf .dnspython.tgz mv dnspython3-1.10.0 dnspython fi |