From 536653d17e481003fef919ee1a20c3c3d0e166e9 Mon Sep 17 00:00:00 2001 From: Benoit Donneaux Date: Mon, 5 Feb 2024 22:46:30 +0100 Subject: [PATCH] Wait for webpack w/o ssl too Signed-off-by: Benoit Donneaux --- client/scripts/wait-for-webpack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/scripts/wait-for-webpack.sh b/client/scripts/wait-for-webpack.sh index 4da438bf..31cf4226 100755 --- a/client/scripts/wait-for-webpack.sh +++ b/client/scripts/wait-for-webpack.sh @@ -3,7 +3,7 @@ printf "Waiting for webpack to compile...\n" while :; do sleep 1 printf . - status="$(curl -s -k "https://localhost:8080/bundle-status")" + status="$(curl -s -k "http://localhost:8080/bundle-status")" if [[ $status =~ "true" ]]; then break fi