summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-config-sign
diff options
context:
space:
mode:
Diffstat (limited to 'bin/taler-deployment-config-sign')
-rwxr-xr-xbin/taler-deployment-config-sign6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/taler-deployment-config-sign b/bin/taler-deployment-config-sign
index 1f699eb..dcde148 100755
--- a/bin/taler-deployment-config-sign
+++ b/bin/taler-deployment-config-sign
@@ -7,5 +7,9 @@ base=$HOME
export PATH="$base/deployment":$PATH
for f in ~/shared-data/exchange/wire/*.unsigned.json; do
- taler-exchange-wire -j "$(<"$f")" > "${f%.unsigned.json}.json"
+ outf="${f%.unsigned.json}.json"
+ taler-exchange-wire -j "$(<"$f")" > "$outf"
+ # make sure both *-blue and *-green can write to it,
+ # even when e.g. umask is messed up
+ chmod g+w "$outf"
done