From 547a3612c3bebbd9be38abe18e470403aa5895a0 Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Wed, 25 May 2022 00:11:17 +0000 Subject: [PATCH] Fix underscore --- examples/chef/chef.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 705395fa8d978f..0ad749b19c295a 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -267,7 +267,7 @@ def main(argv: Sequence[str]) -> None: target_file_ext = ".zap" if device_dir_item.endswith(target_file_ext) and device_dir_item in chef_util.ci_allowlist: device_name = device_dir_item[:-len(target_file_ext)] - command = './chef.py -cbr --use-zzz -d {} -t {}'.format(device_name, options.build_target) + command = './chef.py -cbr --use_zzz -d {} -t {}'.format(device_name, options.build_target) subprocess.check_call(command, cwd=_CHEF_SCRIPT_PATH, shell=True) exit(0)