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: enclosing fmt str


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: enclosing fmt string between "
Date: Tue, 09 Jan 2018 16:27:51 +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 fccfedb  enclosing fmt string between "
fccfedb is described below

commit fccfedb664fc166a241793ec5e2737c51ff530ac
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Jan 9 16:27:33 2018 +0100

    enclosing fmt string between "
---
 buildbot/checks.sh | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/buildbot/checks.sh b/buildbot/checks.sh
index 779d845..f4aa5e2 100755
--- a/buildbot/checks.sh
+++ b/buildbot/checks.sh
@@ -24,9 +24,9 @@ http_status_code=$(curl \
   -s https://exchange.test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 200 = $http_status_code; then
-  printf "%s (http status code: %s)/(curl exit code: %s - %s)\n" \
-  "Exchange did not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Exchange did not restart correctly" \
+    $http_status_code $? $(error_stringify $?)
   exit 1
 fi
 
@@ -35,9 +35,9 @@ http_status_code=$(curl \
   -s http://backend.test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 200 = $http_status_code; then
-  printf $error_fmt \
-  "Merchant backend did not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Merchant backend did not restart correctly" \
+    $http_status_code $? $(error_stringify $?)
   exit 1
 fi
 
@@ -46,9 +46,9 @@ http_status_code=$(curl \
   -s http://shop.test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 200 = $http_status_code; then
-  printf $error_fmt \
-  "Blog did not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Blog did not restart correctly" \
+    $http_status_code $? $(error_stringify $?)
   exit 1
 fi
 
@@ -57,9 +57,9 @@ http_status_code=$(curl \
   -s http://donations.test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 200 = $http_status_code; then
-  printf $error_fmt \
-  "Donations shop did not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Donations shop did not restart correctly" \
+    $http_status_code $? $(error_stringify $?)
   exit 1
 fi
 
@@ -68,9 +68,9 @@ http_status_code=$(curl \
   -s http://bank.test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 302 = $http_status_code; then
-  printf $error_fmt \
-  "Bank did not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Bank did not restart correctly" \
+    $http_status_code $? $(error_stringify $?)
   exit 1
 fi
 
@@ -79,8 +79,8 @@ http_status_code=$(curl \
   -s http://test.taler.net/ -o /dev/null \
   -w "%{http_code}")
 if ! test 200 = $http_status_code; then
-  printf $error_fmt \
-  "Landing page not restart correctly" \
-  $http_status_code $? $(error_stringify $?)
+  printf "$error_fmt" \
+    "Landing page not restart correctly" \
+     $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]