From a09cbe6653ee8f6c9bd4c4ceda3d590abfec2c63 Mon Sep 17 00:00:00 2001 From: John Pennycook Date: Wed, 6 Mar 2024 11:13:37 -0800 Subject: [PATCH] Add platforms from TOML file to codebase platforms Signed-off-by: John Pennycook --- bin/codebasin | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/codebasin b/bin/codebasin index dbdf96c..cb05d85 100755 --- a/bin/codebasin +++ b/bin/codebasin @@ -261,6 +261,7 @@ def main(): raise ValueError(f"Missing 'commands' for platform {name}") p = analysis_toml["platform"][name]["commands"] db = config.load_database(p, rootdir) + codebase["platforms"].append(name) configuration.update({name: db}) # Parse the source tree, and determine source line associations.