diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-10-02 23:02:27 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-10-02 23:02:27 +0200 |
commit | 30f38f6002c2d5c5c384f131be9207b6480d655c (patch) | |
tree | 44bb4ce6e8bf75a43c6180e313f8ebb16cbd9ead | |
parent | cf470cec74f18427b6ea484ca6f16a6fe1ecd35c (diff) | |
download | poezio-30f38f6002c2d5c5c384f131be9207b6480d655c.tar.gz poezio-30f38f6002c2d5c5c384f131be9207b6480d655c.tar.bz2 poezio-30f38f6002c2d5c5c384f131be9207b6480d655c.tar.xz poezio-30f38f6002c2d5c5c384f131be9207b6480d655c.zip |
Fix update.sh again, for bsd(re)tar(d).
-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 xzf .dnspython.tgz + tar xfz .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 xzf .dnspython.tgz + tar xfz .dnspython.tgz mv dnspython3-1.10.0 dnspython fi |