From 97f733d0f0d32ee0b21f656e7b100c113cfbc59d Mon Sep 17 00:00:00 2001 From: "Ian H. Pittwood" Date: Mon, 15 Jun 2026 13:17:14 -0600 Subject: [PATCH] fix: default `metadata_file` to None for serial builds Fixes builds outputting metadata to a file named "False" --- posit-bakery/posit_bakery/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posit-bakery/posit_bakery/config/config.py b/posit-bakery/posit_bakery/config/config.py index 900bb9a4..e62ecc1d 100644 --- a/posit-bakery/posit_bakery/config/config.py +++ b/posit-bakery/posit_bakery/config/config.py @@ -1179,7 +1179,7 @@ def build_targets( pull=pull, cache=cache, platforms=platforms, - metadata_file=True if metadata_file else False, + metadata_file=True if metadata_file else None, ), retry=retry, label=str(target),