commit b12411025e6ea87e0893398ba830d96f38d5494b
parent faa2f6102fd181091ea51cb020f5393a2ce13dbf
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Wed, 17 May 2017 15:49:54 +0200
no spaces around = in bash
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup
@@ -2,7 +2,7 @@
set -eu
-auditor_request = ${HOME}/shared-data/exchange/auditor-request/auditor_request
+auditor_request=${HOME}/shared-data/exchange/auditor-request/auditor_request
if [[ ${TALER_CONFIG_STANDALONE:-0} = 1 ]]; then
# no auditor on env deployments for now
taler-exchange-keyup \
@@ -13,7 +13,7 @@ else
-o $auditor_request
fi
-auditor_base_dir = $(taler-config -s exchangedb -o auditor_base_dir)
+auditor_base_dir=$(taler-config -s exchangedb -o auditor_base_dir)
taler-auditor-sign -u https://auditor.taler.net/ -m $(taler-config -s exchange -o master_public_key) -r $auditor_request -o "$auditor_base_dir/auditor_sig"
if [[ 0 != $? ]]; then
echo Auditor signing not accomplished.