👷 CI for bugfix-2.0.x, updates (#24560)

This commit is contained in:
Keith Bennett
2022-07-29 04:12:38 -07:00
committed by GitHub
parent eee8f11849
commit 3fab4898e4
24 changed files with 310 additions and 148 deletions

View File

@@ -40,7 +40,10 @@ def run_preprocessor(env, fn=None):
depcmd = cmd + [ filename ]
cmd = ' '.join(depcmd)
blab(cmd)
define_list = subprocess.check_output(cmd, shell=True).splitlines()
try:
define_list = subprocess.check_output(cmd, shell=True).splitlines()
except:
define_list = {}
preprocessor_cache[filename] = define_list
return define_list