diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-21 16:09:22 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-21 16:09:22 +0100 |
commit | 88fd81e5da88fe11746ed7c06ba283891e05b673 (patch) | |
tree | 0816f19307abcf815e67763d8d461ca84819e016 /src/auditor/taler-auditor.in | |
parent | a8b8258e12f8e04936bffd82a2e31be7117ec860 (diff) |
completing auditor split
Diffstat (limited to 'src/auditor/taler-auditor.in')
-rwxr-xr-x | src/auditor/taler-auditor.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/auditor/taler-auditor.in b/src/auditor/taler-auditor.in new file mode 100755 index 000000000..1cc50d130 --- /dev/null +++ b/src/auditor/taler-auditor.in @@ -0,0 +1,23 @@ +#!/bin/sh + +set -eu + +DIR=`mktemp -d reportXXXXXX` +for n in aggregation coins deposits reserves wire +do + taler-helper-auditor-$n "$@" > ${DIR}/$n.json +done + +taler-helper-auditor-render.py \ + ${DIR}/aggregation.json \ + ${DIR}/coins.json \ + ${DIR}/deposits.json \ + ${DIR}/reserves.json \ + ${DIR}/wire.json < %pkgdatadir%/auditor-report.tex.j2 > ${DIR}/auditor-report.tex +cd ${DIR} +pdflatex auditor-report.tex < /dev/null +pdflatex auditor-report.tex < /dev/null +pdflatex auditor-report.tex < /dev/null +cd .. + +echo "Result is in ${DIR}/auditor-report.pdf" |