Skip to content

Commit e6dff39

Browse files
fix: retry the download of aqua-installer (#69)
* fix: retry the download of aqua-installer * chore: bump version
1 parent 7820763 commit e6dff39

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/aqua-installer/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aqua-installer",
33
"id": "aqua-installer",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"description": "Install aqua",
66
"options": {
77
"aqua_version": {

src/aqua-installer/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ cd "$tempdir"
4848
url=https://raw.githubusercontent.com/aquaproj/aqua-installer/v4.0.2/aqua-installer
4949

5050
if has_command curl; then
51-
curl -sSfL -O "$url"
51+
curl --retry 5 -sSfL -O "$url"
5252
elif has_command wget; then
5353
wget "$url"
5454
fi

0 commit comments

Comments
 (0)