zshrc: simple-extract: make curl follow redirects
authorBernhard Tittelbach <bernhard@tittelbach.org>
Wed, 16 Nov 2011 19:15:18 +0000 (20:15 +0100)
committerBernhard Tittelbach <bernhard@tittelbach.org>
Wed, 16 Nov 2011 19:15:18 +0000 (20:15 +0100)
etc/zsh/zshrc

index 65f457f..086a9a4 100644 (file)
@@ -3178,7 +3178,7 @@ simple-extract() {
 
         elif [[ "$ARCHIVE" == (#s)(https|http|ftp)://* ]] ; then
             if check_com curl; then
-                WGET_CMD="curl -k -s -o -"
+                WGET_CMD="curl -L -k -s -o -"
             elif check_com wget; then
                 WGET_CMD="wget -q -O - --no-check-certificate"
             else