9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "TEST HUGO"
|
|
response=`curl -k -s -X GET --url "http://localhost:6060"
|
|
if ["$reponse" != "200"]
|
|
then
|
|
exit 1
|
|
fi
|