commit 36ceb50a187d0dbd97bfc1b7ac66388968383adb
parent 8617f584334abc88ec2b39955c38f436b6999ff2
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Thu, 5 Mar 2026 10:50:10 +0100
fix test: do expand path unless is starts with '@'
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/mhd/mhd_typst.c b/src/mhd/mhd_typst.c
@@ -775,6 +775,9 @@ TALER_MHD_typst (
TALER_MHD_typst_cancel (tc);
return NULL;
}
+ if ('@' != template_path[0])
+ template_path = GNUNET_CONFIGURATION_expand_dollar (cfg,
+ template_path);
tc->stages = GNUNET_new_array (num_documents,
struct TypstStage);
tc->num_stages = num_documents;