From ca0d8a49a8ad0b2dd75470d88f8f8b8941a1cc58 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Mon, 29 Jun 2026 16:36:54 +0800 Subject: [PATCH] fix(installer): resume interrupted asset downloads (#49) Co-authored-by: Haitao Pan --- scripts/install-xworkmate-app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-xworkmate-app.sh b/scripts/install-xworkmate-app.sh index f2d6a710..895673e4 100755 --- a/scripts/install-xworkmate-app.sh +++ b/scripts/install-xworkmate-app.sh @@ -71,7 +71,7 @@ download_asset() { local output_path="$2" github_curl application/octet-stream \ - -fL --retry 5 --retry-all-errors \ + -fL --retry 5 --retry-all-errors --continue-at - \ -o "$output_path" "$asset_url" }