Skip to content
Snippets Groups Projects
Commit 9b426d27 authored by Fridtjof Mund's avatar Fridtjof Mund
Browse files

comparators/asar: sort file list

parent 5c9c782e
No related branches found
No related tags found
1 merge request!149ASAR comparator
......@@ -54,7 +54,7 @@ class AsarContainer(Archive):
for root, _, files in os.walk(self._unpacked.name):
current_dir = []
for filename in files:
for filename in sorted(files):
abspath = os.path.join(root, filename)
relpath = abspath[len(self._unpacked.name) + 1 :]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment