fetchurl: warn on rev archives, resolves #32999

This commit is contained in:
Yegor Timoshenko 2018-10-13 16:48:43 +00:00
parent 45351e6916
commit 6fad2ae94b
No known key found for this signature in database
GPG Key ID: C3F7D2B9DFA946A1

View File

@ -118,7 +118,6 @@ if test -n "$showURLs"; then
exit 0
fi
if test -n "$preferHashedMirrors"; then
tryHashedMirrors
fi
@ -128,6 +127,16 @@ set -o noglob
success=
for url in $urls; do
if [ -z "$postFetch" ]; then
case "$url" in
https://github.com/*/archive/*)
echo "warning: archives from GitHub revisions should use fetchFromGitHub"
;;
https://gitlab.com/*/-/archive/*)
echo "warning: archives from GitLab revisions should use fetchFromGitLab"
;;
esac
fi
tryDownload "$url"
if test -n "$success"; then finish; fi
done