Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thirdparty/cmake_modules/koenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ download_archive() { (
for timeout in 0 2 4; do
sleep ${timeout}
for url in "$@"; do
if curl --fail --location --connect-timeout 10 --create-dirs --max-time 30 --retry 3 --output "${dest}" "${url}" && validate_md5 "${dest}" "${md5}"; then
if curl --fail --location --connect-timeout 15 --create-dirs --max-time 120 --output "${dest}" "${url}" && validate_md5 "${dest}" "${md5}"; then
return 0
fi
done
Expand Down