summaryrefslogtreecommitdiff
path: root/src/auditor
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-09-19 14:44:40 +0200
committerChristian Grothoff <christian@grothoff.org>2022-09-19 14:44:40 +0200
commita566242bfd7d3321429bd65faf02986c373122d7 (patch)
treeb3cf84faabc9efa0ccd5d36ca699480050fc12d9 /src/auditor
parente7c431654df62224b48761e7b71864b2ccb393b8 (diff)
downloadexchange-a566242bfd7d3321429bd65faf02986c373122d7.tar.gz
exchange-a566242bfd7d3321429bd65faf02986c373122d7.tar.bz2
exchange-a566242bfd7d3321429bd65faf02986c373122d7.zip
-do not exit if not in PATH
Diffstat (limited to 'src/auditor')
-rwxr-xr-xsrc/auditor/test-auditor.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/test-auditor.sh b/src/auditor/test-auditor.sh
index ec5a4585e..637a21d9c 100755
--- a/src/auditor/test-auditor.sh
+++ b/src/auditor/test-auditor.sh
@@ -2042,7 +2042,7 @@ MYDIR=`mktemp -d /tmp/taler-auditor-basedbXXXXXX`
echo -n "Testing for Postgres"
# Available directly in path?
-INITDB_BIN=$(command -v initdb)
+INITDB_BIN=$(command -v initdb) || true
if [[ ! -z $INITDB_BIN ]]; then
echo " FOUND (in path) at" $INITDB_BIN
else