Skip to content

Commit 3ab9507

Browse files
authored
Speed up check on website links (#23737)
1 parent 72e27f4 commit 3ab9507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/www/check-links.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ for external_link in "${external_links[@]}"
7373
do
7474
redraw_progress_bar 50 1 $i ${#external_links[@]}
7575

76-
if ! curl -sSfL --max-time 10 --connect-timeout 10 --retry 2 -4 "${external_link}" > /dev/null ; then
76+
if ! curl -sSfL --max-filesize 1000000 --max-time 10 --connect-timeout 10 --retry 2 -4 "${external_link}" > /dev/null ; then
7777
invalid_links+=("${external_link}")
7878
echo "${external_link}"
7979
fi

0 commit comments

Comments
 (0)