Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jgleissner committed Oct 26, 2023
1 parent df6506c commit 8c414c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kiwi_keg/tools/compose_kiwi_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def files_equivalent(filename, dir1, dir2, ignore_kiwi_version):
return tar_files_equivalent(path1, path2)

log.info('file is other')
result = filecmp.cmp(path1, path2)
result = filecmp.cmp(path1, path2, shallow=False)
log.info('result: {}'.format(result))
log.info('content {}: {}'.format(path1, open(path1, 'r').read()))
log.info('content {}: {}'.format(path2, open(path2, 'r').read()))
Expand Down

0 comments on commit 8c414c3

Please sign in to comment.