taler-deployment

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

commit 570f2813a75f7b24fced443b7b936ce9a151067c
parent 78e2b7e4a01062263fabce27b9dd47e4e11bb197
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Fri, 23 Dec 2016 19:24:44 +0100

Prepending ~/local/bin to exchange's tool call

Diffstat:
Mbin/taler-deployment-config-sign | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/taler-deployment-config-sign b/bin/taler-deployment-config-sign @@ -7,6 +7,6 @@ base=$HOME export PATH="$base/deployment":$PATH for f in ~/.config/taler/exchange/wire/*.unsigned.json; do - taler-exchange-wire -j "$(<"$f")" > "${f%.unsigned.json}.json" + ~/local/bin/taler-exchange-wire -j "$(<"$f")" > "${f%.unsigned.json}.json" done