jam: Make DownloadLocatedFile1 more aggressive. 10s timeout == retry

This commit is contained in:
Alexander von Gluck IV
2015-07-04 14:01:00 -05:00
parent dfcbef64f6
commit 3847e19f7f
+1 -1
View File
@@ -478,7 +478,7 @@ actions DownloadLocatedFile1
echo "ERROR: Would need to download $(URL), but HAIKU_NO_DOWNLOADS is set!" echo "ERROR: Would need to download $(URL), but HAIKU_NO_DOWNLOADS is set!"
exit 1 exit 1
fi fi
wget --retry-connrefused -O "$(1)" $(URL) || exit 1 wget --retry-connrefused --timeout 10 -O "$(1)" $(URL) || exit 1
touch "$(1)" touch "$(1)"
} }