Skip to content

Commit

Permalink
Merge pull request #933 from Rei1010/fixIncorrectDownload
Browse files Browse the repository at this point in the history
Correct download path
  • Loading branch information
ErikJiang authored Aug 14, 2023
2 parents a185b79 + 7a33271 commit 5e101eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/resouce_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function resource::download_resource_files(){
file_url=${BASE_URL}/${new_tag}/${file_name}
echo "${file_url}"
# retry more times to download files
curl --retry 10 --retry-max-time 60 -LO --output "${download_root_path}/${new_tag}" ${file_url}
curl --retry 10 --retry-max-time 60 -Lo "${download_root_path}/${new_tag}/${file_name}" ${file_url}
done
}

Expand Down

0 comments on commit 5e101eb

Please sign in to comment.