Commit 9b426d27 authored by Fridtjof Mund's avatar Fridtjof Mund
Browse files

comparators/asar: sort file list

parent 5c9c782e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 :]