summaryrefslogtreecommitdiff
path: root/src/testing/initialize_taler_system.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-06-22 16:30:55 +0200
committerChristian Grothoff <christian@grothoff.org>2023-06-22 16:30:55 +0200
commit99543152e9ddb1aab29d4e69dffb26c97d36040a (patch)
treea15f35206bf35183e986add028e684d59f31c310 /src/testing/initialize_taler_system.sh
parent52c49785fe20844a52f083de4adf9fea6e0c403d (diff)
downloadmerchant-99543152e9ddb1aab29d4e69dffb26c97d36040a.tar.gz
merchant-99543152e9ddb1aab29d4e69dffb26c97d36040a.tar.bz2
merchant-99543152e9ddb1aab29d4e69dffb26c97d36040a.zip
-clean up test scripts
Diffstat (limited to 'src/testing/initialize_taler_system.sh')
-rwxr-xr-xsrc/testing/initialize_taler_system.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh
index 1a234177..709ce3f0 100755
--- a/src/testing/initialize_taler_system.sh
+++ b/src/testing/initialize_taler_system.sh
@@ -257,10 +257,10 @@ fi
echo " OK"
echo -n "Setting up keys ..."
-taler-exchange-offline -c $CONF \
+taler-exchange-offline -c "$CONF" \
download \
sign \
- enable-account `taler-config -c $CONF -s exchange-account-1 -o PAYTO_URI` \
+ enable-account $(taler-config -c $CONF -s exchange-account-1 -o PAYTO_URI) \
enable-auditor $AUDITOR_PUB $AUDITOR_URL "TESTKUDOS Auditor" \
wire-fee now iban TESTKUDOS:0.01 TESTKUDOS:0.01 \
global-fee now TESTKUDOS:0.01 TESTKUDOS:0.01 TESTKUDOS:0.01 1h 1year 5 \
@@ -268,7 +268,7 @@ taler-exchange-offline -c $CONF \
echo -n "."
-for n in `seq 1 3`
+for n in $(seq 1 3)
do
echo -n "."
OK=0