summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-12-04 18:25:01 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-12-04 18:25:01 +0100
commitf93a382a219da65ae1a2990665c8234e70786052 (patch)
treef624de4eb7a4b92879f42cb175b48f1cf544f008
parent2d5e8491741b5bba0b4fdb466fd5fb0ffb76a92c (diff)
downloaddeployment-f93a382a219da65ae1a2990665c8234e70786052.tar.gz
deployment-f93a382a219da65ae1a2990665c8234e70786052.tar.bz2
deployment-f93a382a219da65ae1a2990665c8234e70786052.zip
More single quotes.
-rwxr-xr-xbuildbot/make_auditor_reports.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
index fc86b8a..976773e 100755
--- a/buildbot/make_auditor_reports.sh
+++ b/buildbot/make_auditor_reports.sh
@@ -27,10 +27,10 @@ SUDO_COLOR="sudo -u ${ACTIVE_COLOR}"
JINJA_TEMPLATE="auditor-report.tex.j2"
REPORTS_DIRECTORY="/home/${TALER_DEPLOYMENT}/reports"
-TALER_AUDITOR_EXCHANGE=$(printf "taler-auditor-exchange -c %s -m %s -u %s" \
- "'${HOME}/.config/taler.conf'" \
- "'$(taler-config -s exchange -o master_public_key)'" \
- "'$(taler-config -s exchange -o base_url)'")
+TALER_AUDITOR_EXCHANGE=$(printf "taler-auditor-exchange -c '%s' -m '%s' -u '%s'" \
+ '${HOME}/.config/taler.conf' \
+ '$(taler-config -s exchange -o master_public_key)' \
+ '$(taler-config -s exchange -o base_url)')
CMD=$(printf "%s; %s" \
"source /home/${ACTIVE_COLOR}/activate" \