Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 27, 2022
1 parent 161e92b commit b73ddd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/chef_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def generate_device_manifest(chef_devices_dir: str, include_zap_submod: bool = F
ci_manifest = {}
for device_dir_item in os.listdir(chef_devices_dir):
target_file_ext = ".zap"
if device_dir_item.endswith(target_file_ext): # and device_dir_item in ci_allowlist:
if device_dir_item.endswith(target_file_ext):
device_name = device_dir_item[:-len(target_file_ext)]
device_file_path = os.path.join(chef_devices_dir, device_dir_item)
with open(device_file_path, "rb") as device_file:
Expand Down

0 comments on commit b73ddd5

Please sign in to comment.