Skip to content

Commit

Permalink
Merge pull request #3879 from kpcyrd/dist_get_fix
Browse files Browse the repository at this point in the history
dist_get: handle 404 correctly
  • Loading branch information
whyrusleeping committed Apr 26, 2017
2 parents 213358b + 49b90a0 commit 095230e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/dist_get
Expand Up @@ -44,9 +44,10 @@ download() {
fi

try_download "$dl_url" "$dl_output" "wget '$dl_url' -O '$dl_output'" && return
try_download "$dl_url" "$dl_output" "curl --silent '$dl_url' > '$dl_output'" && return
try_download "$dl_url" "$dl_output" "curl --silent --fail --output '$dl_output' '$dl_url'" && return
try_download "$dl_url" "$dl_output" "fetch '$dl_url' -o '$dl_output'" && return
try_download "$dl_url" "$dl_output" "http '$dl_url' > '$dl_output'" && return
try_download "$dl_url" "$dl_output" "ftp -o '$dl_output' '$dl_url'" && return

die "Unable to download $dl_url. exiting."
}
Expand Down

0 comments on commit 095230e

Please sign in to comment.