taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 5f95beb81657396206c358a4a6660ce40a646912
parent 3cbd72fb610accca3d323aff4634dfb363cb2630
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Tue, 11 Jun 2019 17:49:08 +0200

Tolerating impossible chmod.

Diffstat:
Mbin/taler-deployment-sign | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment-sign b/bin/taler-deployment-sign @@ -21,4 +21,8 @@ fi taler-exchange-wire WIRE_RESPONSE=$(taler-config -s account-1 -o wire_response -f) -chmod 770 $WIRE_RESPONSE + +# If chmod is not possible (= the owner is the other color), then +# the permissions are already right on it, hence we can tolerate to +# not set those. +chmod 770 $WIRE_RESPONSE || true