commit 5ecfa5cf5c5fdd3c0f8cf2510b4400f1b8eb5db3
parent 2be6fcc9ae5ccf6483d7f41f230007405664fe30
Author: MS <ms@taler.net>
Date: Fri, 22 Jul 2022 11:36:37 +0200
fix prefix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/taler-gv b/bin/taler-gv
@@ -1010,9 +1010,9 @@ def prepare(postgres_db_name):
obj.cfg_put("exchange", "serve", "unix")
obj.cfg_put("exchange", "unixpath", str(unix_sockets_dir / "exchange.http"))
obj.cfg_put("exchange", "terms_etag", "0")
- obj.cfg_put("exchange", "terms_dir", "$HOME/.local/share/taler-exchange/tos")
+ obj.cfg_put("exchange", "terms_dir", f"{TALER_PREFIX}/share/taler-exchange/tos")
obj.cfg_put("exchange", "privacy_etag", "0")
- obj.cfg_put("exchange", "privacy_dir", "$HOME/.local/share/taler-exchange/pp")
+ obj.cfg_put("exchange", "privacy_dir", f"{TALER_PREFIX}/share/taler-exchange/pp")
obj.cfg_put("exchangedb-postgres", "db_conn_str", f"postgres:///{postgres_db_name}")
obj.cfg_put("exchangedb-postgres", "config", f"postgres:///{postgres_db_name}")