Skip to content

Commit

Permalink
Removed bad library exclusion to test error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jormundur00 committed Sep 19, 2024
1 parent 79271a0 commit f89a6eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vm/build_layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def generate_matrix(path_to_data):
if excluded_lib['group_id'] == lib['group_id'] and excluded_lib['artifact_id'] == lib['artifact_id']:
skip = True
break
if not skip:
#if not skip:
if True:
if not found_first:
first = f'{lib['group_id']}:{lib['artifact_id']}:{lib['version']}'
found_first = True
Expand Down

0 comments on commit f89a6eb

Please sign in to comment.