mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
Retry downloading of depends sources 3 times
This commit is contained in:
parent
664ca46d5b
commit
9a45241621
@ -31,6 +31,8 @@ endef
|
||||
define fetch_file
|
||||
( test -f $$($(1)_source_dir)/$(4) || \
|
||||
( $(call fetch_file_inner,$(1),$(2),$(3),$(4),$(5)) || \
|
||||
(sleep 5 && $(call fetch_file_inner,$(1),$(2),$(3),$(4),$(5))) || \
|
||||
(sleep 10 && $(call fetch_file_inner,$(1),$(2),$(3),$(4),$(5))) || \
|
||||
$(call fetch_file_inner,$(1),$(FALLBACK_DOWNLOAD_PATH),$(3),$(4),$(5))))
|
||||
endef
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user