X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=6ff7a88357fba256b88e0bd225134b2094050f7d;hb=43d45335db2dcfcb8c143a248057636508bfc4ae;hp=8cfb1cb24f12ee13001663c07ed3f1adf4da8d45;hpb=2b66bf6bf6bab6f118ef3e9117dfe1fce792a084;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 8cfb1cb..6ff7a88 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -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))