From b4fdcebebecd8d8952211b78bce26d53fd29edb3 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 2 Apr 2021 12:57:30 +0200 Subject: T3165: prevent override of populated node.def file with empty content --- scripts/build-command-op-templates | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scripts/build-command-op-templates') diff --git a/scripts/build-command-op-templates b/scripts/build-command-op-templates index c60b32a1e..c285ee594 100755 --- a/scripts/build-command-op-templates +++ b/scripts/build-command-op-templates @@ -170,12 +170,11 @@ def process_node(n, tmpl_dir): print("Processing node {}".format(name)) nodedef_path = os.path.join(make_path(my_tmpl_dir), "node.def") - if not os.path.exists(nodedef_path): + # Only create the "node.def" file if it exists but is empty, or if it + # does not exist at all. + if not os.path.exists(nodedef_path) or os.path.getsize(nodedef_path) == 0: with open(nodedef_path, "w") as f: f.write(make_node_def(props, command)) - else: - # Something has already generated this file - pass if children is not None: inner_nodes = children.iterfind("*") -- cgit v1.2.3