aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-08-08 14:21:56 -0400
committerGitHub <noreply@github.com>2024-08-08 14:21:56 -0400
commitc9b73913d4e4cc1eae2f54ba70c0d866a749e3af (patch)
tree564074df2cc40e9c70c1ef56cba9c6d2c25d12d7
parentc9579598c5a1b49f7fe8e353623175bf8f3cc236 (diff)
downloadstasis-c9b73913d4e4cc1eae2f54ba70c0d866a749e3af.tar.gz
Render during bootstrap (#21)
-rw-r--r--src/delivery.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/delivery.c b/src/delivery.c
index ce6e804..eaa2b06 100644
--- a/src/delivery.c
+++ b/src/delivery.c
@@ -661,8 +661,8 @@ int *bootstrap_build_info(struct Delivery *ctx) {
local._stasis_ini_fp.cfg = ini_open(ctx->_stasis_ini_fp.cfg_path);
local._stasis_ini_fp.delivery = ini_open(ctx->_stasis_ini_fp.delivery_path);
delivery_init_platform(&local);
- populate_delivery_cfg(&local, INI_READ_RAW);
- populate_delivery_ini(&local, INI_READ_RAW);
+ populate_delivery_cfg(&local, INI_READ_RENDER);
+ populate_delivery_ini(&local, INI_READ_RENDER);
populate_info(&local);
ctx->info.build_name = strdup(local.info.build_name);
ctx->info.build_number = strdup(local.info.build_number);