mirror of https://github.com/axmolengine/axmol.git
[travis ci] Sort file list in generate-template-files.py.
This commit is contained in:
parent
c4752b260b
commit
04038a912f
|
@ -148,6 +148,8 @@ class CocosFileList:
|
||||||
Save content to file with json format.
|
Save content to file with json format.
|
||||||
"""
|
"""
|
||||||
f = open(fileName,"w")
|
f = open(fileName,"w")
|
||||||
|
self.fileList_com.sort()
|
||||||
|
self.fileList_lua.sort()
|
||||||
content ={'common':self.fileList_com,'lua':self.fileList_lua}
|
content ={'common':self.fileList_com,'lua':self.fileList_lua}
|
||||||
json.dump(content,f,sort_keys=True,indent=4)
|
json.dump(content,f,sort_keys=True,indent=4)
|
||||||
f.close()
|
f.close()
|
||||||
|
|
Loading…
Reference in New Issue