gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: enclose error str


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: enclose error string between "(s)
Date: Tue, 09 Jan 2018 16:35:37 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new b29d0dd  enclose error string between "(s)
b29d0dd is described below

commit b29d0dd608b6840d1c950216b5a50c5ebf0bb8ab
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Jan 9 16:35:13 2018 +0100

    enclose error string between "(s)
---
 buildbot/checks.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/buildbot/checks.sh b/buildbot/checks.sh
index f4aa5e2..709bb2f 100755
--- a/buildbot/checks.sh
+++ b/buildbot/checks.sh
@@ -26,7 +26,7 @@ http_status_code=$(curl \
 if ! test 200 = $http_status_code; then
   printf "$error_fmt" \
     "Exchange did not restart correctly" \
-    $http_status_code $? $(error_stringify $?)
+    $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi
 
@@ -37,7 +37,7 @@ http_status_code=$(curl \
 if ! test 200 = $http_status_code; then
   printf "$error_fmt" \
     "Merchant backend did not restart correctly" \
-    $http_status_code $? $(error_stringify $?)
+    $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi
 
@@ -48,7 +48,7 @@ http_status_code=$(curl \
 if ! test 200 = $http_status_code; then
   printf "$error_fmt" \
     "Blog did not restart correctly" \
-    $http_status_code $? $(error_stringify $?)
+    $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi
 
@@ -59,7 +59,7 @@ http_status_code=$(curl \
 if ! test 200 = $http_status_code; then
   printf "$error_fmt" \
     "Donations shop did not restart correctly" \
-    $http_status_code $? $(error_stringify $?)
+    $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi
 
@@ -70,7 +70,7 @@ http_status_code=$(curl \
 if ! test 302 = $http_status_code; then
   printf "$error_fmt" \
     "Bank did not restart correctly" \
-    $http_status_code $? $(error_stringify $?)
+    $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi
 
@@ -81,6 +81,6 @@ http_status_code=$(curl \
 if ! test 200 = $http_status_code; then
   printf "$error_fmt" \
     "Landing page not restart correctly" \
-     $http_status_code $? $(error_stringify $?)
+     $http_status_code $? "$(error_stringify $?)"
   exit 1
 fi

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]