diff options
Diffstat (limited to 'scripts/nsis.py')
-rw-r--r-- | scripts/nsis.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/nsis.py b/scripts/nsis.py index 5135a05831..383bef7033 100644 --- a/scripts/nsis.py +++ b/scripts/nsis.py @@ -34,9 +34,9 @@ def main(): with open( os.path.join(destdir + args.prefix, "system-emulations.nsh"), "w" ) as nsh: - for exe in glob.glob( + for exe in sorted(glob.glob( os.path.join(destdir + args.prefix, "qemu-system-*.exe") - ): + )): exe = os.path.basename(exe) arch = exe[12:-4] nsh.write( |