Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • seco-ne/yocto/infrastructure/gitlab-ci
1 result
Show changes
Commits on Source (1)
......@@ -31,7 +31,7 @@ def generate_md5sums_file(input_files: list[str], output_file: str):
# Check if the item ends with "/"
if item.endswith("/"):
# If it does, recursively calculate MD5 sums for all files in the directory
for root, files in os.walk(item):
for root, _, files in os.walk(item):
for file in files:
file_path = os.path.join(root, file)
md5sums[os.path.relpath(file_path, item)] = md5(file_path)
......