From 8eea9e3ce1cce4769b0bb48d3bd5bcc0db9530cf Mon Sep 17 00:00:00 2001 From: Peter Woodcock Date: Tue, 17 Mar 2026 19:15:51 +0000 Subject: [PATCH] Replace wget with curl in UI download script curl is available by default on macOS and most Linux distros; wget is not. Co-Authored-By: Claude Opus 4.6 --- infrastructure/modules/ui/scripts/ui.sh.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/modules/ui/scripts/ui.sh.tpl b/infrastructure/modules/ui/scripts/ui.sh.tpl index d9e9568b..de876f94 100644 --- a/infrastructure/modules/ui/scripts/ui.sh.tpl +++ b/infrastructure/modules/ui/scripts/ui.sh.tpl @@ -3,8 +3,8 @@ url="${REGISTRY_URL}/${VERSION}.zip" router_url="${REGISTRY_URL}/${VERSION}-router-lambda.zip" -wget $url -wget $router_url +curl -LO $url +curl -LO $router_url unzip -o "${VERSION}.zip" cd out/ || { echo "./out folder does not exist"; exit 1; }