summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-17 15:49:54 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-17 15:49:54 +0200
commitb12411025e6ea87e0893398ba830d96f38d5494b (patch)
treef1f366067668ea1d04d88f8be331618a0fb9eaf6
parentfaa2f6102fd181091ea51cb020f5393a2ce13dbf (diff)
downloaddeployment-b12411025e6ea87e0893398ba830d96f38d5494b.tar.gz
deployment-b12411025e6ea87e0893398ba830d96f38d5494b.tar.bz2
deployment-b12411025e6ea87e0893398ba830d96f38d5494b.zip
no spaces around = in bash
-rwxr-xr-xbin/taler-deployment-keyup4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup
index d0698d6..da8e718 100755
--- 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.