1
0
Files
btcpayserver-docker/.circleci/test-connectivity.sh
2019-09-04 16:21:42 +09:00

8 lines
153 B
Bash
Executable File

#!/bin/bash
while true; do
if curl -sL -w "%{http_code}\\n" "http://localhost/" -o /dev/null > /dev/null; then
break
fi
sleep 1
done