Skip to content

Commit

Permalink
dist/tools/esptool: set --retry for curl in install.sh for stability
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed May 11, 2023
1 parent c9a0d6a commit 53b7ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/tools/esptools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ esac
download()
{
if [ "${URL_GET}" = "curl" ]; then
curl -L "$1" -o "$2"
curl -L "$1" --retry 10 -o "$2"
elif [ "${URL_GET}" = "wget" ]; then
wget "$1" -O "$2"
else
Expand Down

0 comments on commit 53b7ebb

Please sign in to comment.