Merge pull request #48325 from transumption/201810/warn-on-fetchurl-rev-archives

fetchurl: warn on rev archives, resolves #32999
This commit is contained in:
Graham Christensen 2019-04-24 12:09:35 -04:00 committed by GitHub
commit b26153450c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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