Skip to content

Commit

Permalink
Add resuming option to make sure download dependency successfully(#4295
Browse files Browse the repository at this point in the history
…) (#4297)
  • Loading branch information
Accelerator1996 authored Feb 2, 2023
1 parent b56e745 commit 2c6d3b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perf/dacapo/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<echo message="${FILE_NAME} exists. Hence, not downloading it." />
</then>
<else>
<var name="curl_options" value="-Lks https://sourceforge.net/projects/dacapobench/files/latest/download -o dacapo.jar"/>
<var name="curl_options" value="-Lks -C - https://sourceforge.net/projects/dacapobench/files/latest/download -o dacapo.jar"/>
<retry retrycount="3">
<sequential>
<echo message="curl ${curl_options}" />
Expand Down
2 changes: 1 addition & 1 deletion perf/renaissance/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<echo message="${FILE_NAME} exists. Hence, not downloading it." />
</then>
<else>
<var name="curl_options" value="-Lks https://github.com/renaissance-benchmarks/renaissance/releases/download/v0.14.0/renaissance-mit-0.14.0.jar -o ${FILE_NAME}"/>
<var name="curl_options" value="-Lks -C - https://github.com/renaissance-benchmarks/renaissance/releases/download/v0.14.0/renaissance-mit-0.14.0.jar -o ${FILE_NAME}"/>
<retry retrycount="3">
<sequential>
<echo message="curl ${curl_options}" />
Expand Down

0 comments on commit 2c6d3b1

Please sign in to comment.