zshrc: drop insecure options from curl/wget cmdlines in simple-extract()
authorMichael Prokop <mika@grml.org>
Thu, 7 May 2015 13:26:15 +0000 (15:26 +0200)
committerMichael Prokop <mika@grml.org>
Thu, 7 May 2015 13:28:00 +0000 (15:28 +0200)
etc/zsh/zshrc

index 8cfb1cb..6ff7a88 100644 (file)
@@ -3295,9 +3295,9 @@ simple-extract() {
 
         elif [[ "$ARCHIVE" == (#s)(https|http|ftp)://* ]] ; then
             if check_com curl; then
-                WGET_CMD="curl -L -k -s -o -"
+                WGET_CMD="curl -L -s -o -"
             elif check_com wget; then
-                WGET_CMD="wget -q -O - --no-check-certificate"
+                WGET_CMD="wget -q -O -"
             else
                 print "ERROR: neither wget nor curl is installed" >&2
                 RC=$((RC+4))