From e6d20651b7a153a158221c0f26bad0f2be1ba08d Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 6 Mar 2018 17:07:09 +0100 Subject: fix permissions --- bin/taler-deployment-config-sign | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3