diff --git a/testWeb.sh b/testWeb.sh new file mode 100755 index 0000000..04821d9 --- /dev/null +++ b/testWeb.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "TEST HUGO" + +$response = curl http://localhost:6060 +if ($reponse == "HTTP/1.1 200 OK") +{ + exit 0; +} +else +{ + exit 1; +}