commit a380aa93177ed86f74c16e3ac3f9e157f23ea50f
parent 9269d93ad206226a22842ee6a0cb8cbb07b55d21
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 17 Apr 2019 15:32:25 +0200
prettyfying
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/buildbot/checks.sh b/buildbot/checks.sh
@@ -63,7 +63,7 @@ http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
if ! test 200 = $http_status_code; then
- printf "%s failed" $URL
+ printf "%s failed\n" $URL
printf "$error_fmt" \
"Blog did not restart correctly" \
$http_status_code $? "$(error_stringify $?)"
@@ -76,7 +76,7 @@ http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
if ! test 200 = $http_status_code; then
- printf "%s failed" $URL
+ printf "%s failed\n" $URL
printf "$error_fmt" \
"Survey site did not restart correctly" \
$http_status_code $? "$(error_stringify $?)"
@@ -89,7 +89,7 @@ http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
if ! test 200 = $http_status_code; then
- printf "%s failed" $URL
+ printf "%s failed\n" $URL
printf "$error_fmt" \
"Donations shop did not restart correctly" \
$http_status_code $? "$(error_stringify $?)"
@@ -102,7 +102,7 @@ http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
if ! test 302 = $http_status_code; then
- printf "%s failed" $URL
+ printf "%s failed\n" $URL
printf "$error_fmt" \
"Bank did not restart correctly" \
$http_status_code $? "$(error_stringify $?)"
@@ -115,7 +115,7 @@ http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
if ! test 200 = $http_status_code; then
- printf "%s failed" $URL
+ printf "%s failed\n" $URL
printf "$error_fmt" \
"Landing page not restart correctly" \
$http_status_code $? "$(error_stringify $?)"