mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
MAINT: Sort input file list
so that mumble_flags.qrc builds in a reproducible way in spite of non-deterministic filesystem readdir order See https://reproducible-builds.org/ for why this is good.
This commit is contained in:
parent
82bcd1eb3d
commit
5c2e2ddcd0
@ -39,7 +39,7 @@ def main():
|
||||
# Get a list of all flag SVGs
|
||||
flags = []
|
||||
|
||||
for fn in os.listdir(args.flag_dir):
|
||||
for fn in sorted(os.listdir(args.flag_dir)):
|
||||
if not fn.lower().endswith('svg'):
|
||||
continue
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user