mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-30 01:59:29 +00:00
Bug 1617131 - Sort the list of third party paths. r=sylvestre
Differential Revision: https://phabricator.services.mozilla.com/D63631 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
5a9cd51a1a
commit
1b3a3daa80
@ -21,7 +21,7 @@ def generate(output, *input_paths):
|
||||
if line.endswith('/'):
|
||||
line = line[:-1]
|
||||
tpp_list.append(line)
|
||||
tpp_strings = ',\n '.join([json.dumps(tpp) for tpp in tpp_list])
|
||||
tpp_strings = ',\n '.join([json.dumps(tpp) for tpp in sorted(tpp_list)])
|
||||
|
||||
output.write("""\
|
||||
/* THIS FILE IS GENERATED BY ThirdPartyPaths.py - DO NOT EDIT */
|
||||
|
Loading…
x
Reference in New Issue
Block a user