Skip to content

Commit

Permalink
Fix underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 25, 2022
1 parent 9193a3d commit 547a361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 547a361

Please sign in to comment.