lila/bin/lilarc
Niklas Fiekas 9e90b7bd1d sh -e everywhere
To avoid silently ignored errors.
2018-08-25 11:26:54 +02:00

13 lines
196 B
Bash

#!/bin/sh -e
PROD_URL="https://lichess.org"
lilalog () {
echo -e "\x1b[7m[lila]\x1b[0m $1"
}
curl_prod () {
lilalog "Test $PROD_URL"
curl -sL -w "%{http_code}" -o /dev/null "$PROD_URL"
}