We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e27f4 commit 3ab9507Copy full SHA for 3ab9507
website/www/check-links.sh
@@ -73,7 +73,7 @@ for external_link in "${external_links[@]}"
73
do
74
redraw_progress_bar 50 1 $i ${#external_links[@]}
75
76
- if ! curl -sSfL --max-time 10 --connect-timeout 10 --retry 2 -4 "${external_link}" > /dev/null ; then
+ if ! curl -sSfL --max-filesize 1000000 --max-time 10 --connect-timeout 10 --retry 2 -4 "${external_link}" > /dev/null ; then
77
invalid_links+=("${external_link}")
78
echo "${external_link}"
79
fi
0 commit comments