commit e6d20651b7a153a158221c0f26bad0f2be1ba08d parent 57207bb21e0854fd638b6559a5fcd4e1b3d87964 Author: Florian Dold <florian.dold@gmail.com> Date: Tue, 6 Mar 2018 17:07:09 +0100 fix permissions Diffstat:
| M | 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 @@ -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