commit cbc2c424de15a8579ba20a070a3bb359f58a9802
parent 08a44864ffe2f82ef29b78a661e07aac80183526
Author: Antoine A <>
Date: Fri, 19 Dec 2025 12:14:26 +0100
libeufin: fix dbconfig
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/libeufin-dbconfig b/contrib/libeufin-dbconfig
@@ -35,7 +35,7 @@ function exit_fail() {
exit 1
}
-short_opts=b:hrn:psu:v:
+short_opts=c:b:hrn:psu:v:
long_opts=bank-config:,help,nexus-config:,reset,skip,permissions,nexus-user:,bank-user:,only-nexus,only-bank
if ! VALID_ARGS=$(getopt -o "$short_opts" -l "$long_opts" -n "$0" -- "$@"); then
exit 1
@@ -67,11 +67,11 @@ while true; do
case "$1" in
-c | --config)
BANK_CFGFILE="$2"
+ NEXUS_CFGFILE="$2"
shift 2
;;
-b | --bank-config)
BANK_CFGFILE="$2"
- NEXUS_CFGFILE="$2"
shift 2
;;
-h | --help)