diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-06 17:59:47 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-06 17:59:47 +0100 |
commit | 567702d2e63001a0a2bfde6558b9061f27f93978 (patch) | |
tree | a3343c8c09d77ea71db30eb0fed2721db6e06e40 | |
parent | 66059c8ea7384eda126b2bc6d1df7cc2f510f57d (diff) |
-check for curl
-rwxr-xr-x | src/testing/initialize_taler_system.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh index a74d7e7a..2b5cc50a 100755 --- 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" |