Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #3826, sort all file lists in moz.build (#3827)
Browse files Browse the repository at this point in the history
This seems to be a new ./mach build requirement
  • Loading branch information
ianb authored and jaredhirsch committed Nov 27, 2017
1 parent 621ccf1 commit e4442eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/update_mozbuild.py
Expand Up @@ -42,7 +42,7 @@ def rewriteMozBuild(outputLoc, fileList):
insertion_text += \
"FINAL_TARGET_FILES.features['screenshots@mozilla.org']%s += [\n" % mozBuildPathName + \
" '" + \
"',\n '".join(fileList[dir]) + "'\n]\n\n"
"',\n '".join(sorted(fileList[dir])) + "'\n]\n\n"

new_contents = re.sub(
'# AUTOMATIC INSERTION START(.*)# AUTOMATIC INSERTION END',
Expand Down

0 comments on commit e4442eb

Please sign in to comment.