Skill issue

This commit is contained in:
Onn
2025-11-14 14:18:03 +07:00
parent 3c4018f138
commit 628df8aaf6
2 changed files with 6 additions and 6 deletions

View File

@@ -64,7 +64,7 @@ class IntegrityChecker:
for root, _, files in os.walk(folder_path):
for name in files:
file_path = os.path.join(root, name)
relative_path = os.path.relpath(file_path, folder_path)
relative_path = os.path.relpath(file_path, folder_path).replace('\\', '/')
if relative_path == os.path.basename(manifest_path):
continue