merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 567702d2e63001a0a2bfde6558b9061f27f93978
parent 66059c8ea7384eda126b2bc6d1df7cc2f510f57d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  6 Feb 2023 17:59:47 +0100

-check for curl

Diffstat:
Msrc/testing/initialize_taler_system.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh @@ -94,6 +94,11 @@ echo -n "Testing for jq" jq -h > /dev/null || exit_skip "jq required" echo " FOUND" +# Check we can actually run +echo -n "Testing for curl" +curl -h 2> /dev/null > /dev/null || exit_skip "curl required" +echo " FOUND" + echo -n "Testing for taler" taler-exchange-httpd -h > /dev/null || exit_skip " taler-exchange required" taler-merchant-httpd -h > /dev/null || exit_skip " taler-merchant required"