diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 31e4993a4e4978..18f57366c63313 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -122,7 +122,7 @@ def generate_device_manifest( """ ci_manifest = {} for device_name in _DEVICE_LIST: - device_file_path = os.path.join(_CHEF_DEVICES_DIR, device_dir_item) + device_file_path = os.path.join(_DEVICE_FOLDER, device_dir_item) with open(device_file_path, "rb") as device_file: device_file_data = device_file.read() device_file_md5 = hashlib.md5(device_file_data).hexdigest()