Skip to content

Commit

Permalink
Wait for webpack w/o ssl too
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Donneaux <[email protected]>
  • Loading branch information
btlogy committed Feb 5, 2024
1 parent c5e59d1 commit 536653d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/scripts/wait-for-webpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 536653d

Please sign in to comment.