commit 656893f5751dc15ec1ccb3c4cfd5517147f369cf parent 75d017a5522667cb3e3126c571e232804466a5f8 Author: Florian Dold <florian@dold.me> Date: Thu, 13 Nov 2025 22:52:31 +0100 quoting Diffstat:
| M | contrib/libeufin-dbconfig | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/libeufin-dbconfig b/contrib/libeufin-dbconfig @@ -132,10 +132,10 @@ function get_db_name { echo $(echo "$1" | sed -e 's|postgres://.*/||' -e 's|?.*||') } if [ 0 = "$SKIP_BANK" ]; then - BANK_DBNAME=$(get_db_name $(libeufin-bank config get libeufin-bankdb-postgres CONFIG) "bank") + BANK_DBNAME=$(get_db_name "$(libeufin-bank config get libeufin-bankdb-postgres CONFIG)" "bank") fi if [ 0 = "$SKIP_NEXUS" ]; then - NEXUS_DBNAME=$(get_db_name $(libeufin-nexus config get nexus-postgres CONFIG 2> /dev/null | libeufin-nexus config get libeufin-nexusdb-postgres CONFIG) "nexus") + NEXUS_DBNAME=$(get_db_name "$(libeufin-nexus config get nexus-postgres CONFIG 2> /dev/null | libeufin-nexus config get libeufin-nexusdb-postgres CONFIG)" "nexus") fi # If using both components they must use the same database