summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-config-sign
blob: 0f6e082fdeae7b13c3b5530f064e30a9a432e3bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

set -eu

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"
done