taler-deployment

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

commit 5d14989807c522141e6fc34e0d6be3b74a1c1d05
parent 92ea449b13e28283bbe3254815c5aa7385743fb0
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu, 26 Apr 2018 10:11:21 +0200

wireformats filename fix.

remove the '.unsignaed.' token in filenames.

Diffstat:
Mconfig/generate-config | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/generate-config b/config/generate-config @@ -326,7 +326,7 @@ def main(currency, envname, outdir, shared_outdir, exchange_pub, standalone): for name, data in exchange_wireformats: # These files must be signed by the exchange in # a later step - f = open(os.path.join(d, name+".unsigned.json"), "w") + f = open(os.path.join(d, name+".json"), "w") f.write(data) f.close() else: