diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-09-19 14:44:40 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-09-19 14:44:40 +0200 |
commit | a566242bfd7d3321429bd65faf02986c373122d7 (patch) | |
tree | b3cf84faabc9efa0ccd5d36ca699480050fc12d9 /src | |
parent | e7c431654df62224b48761e7b71864b2ccb393b8 (diff) |
-do not exit if not in PATH
Diffstat (limited to 'src')
-rwxr-xr-x | src/auditor/test-auditor.sh | 2 |
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 |