Skip to content

Commit c4d9b91

Browse files
committed
remove yaml_files from manifest.json items
1 parent 905156f commit c4d9b91

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/pyatsimagebuilder/utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,6 @@ def discover_yamls_from_manifest(manifest, search_path, relative_path=None):
545545
"""
546546
manifest_dir = os.path.dirname(manifest['file'])
547547
for profile in manifest['profiles']:
548-
profile['yaml_files'] = []
549548
if not isinstance(profile.get('arguments'), dict):
550549
continue
551550
for argument, value in profile['arguments'].items():
@@ -576,11 +575,6 @@ def discover_yamls_from_manifest(manifest, search_path, relative_path=None):
576575
if relative_path:
577576
yaml_file = to_image_path(yaml_file, relative_path, search_path)
578577

579-
# Append to yaml_files list for this manifest - it doesn't
580-
# matter if it exists at this point, just that the manifest is
581-
# referencing it.
582-
profile['yaml_files'].append(yaml_file)
583-
584578
if os.path.isfile(yaml_file):
585579
try:
586580
with open(yaml_file) as f:

0 commit comments

Comments
 (0)