sort scripts array
This commit is contained in:
parent
fe8031578a
commit
13d5de1c81
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ def build_oxjs(downloads=False, geo=False):
|
||||||
for filename in filenames[1]:
|
for filename in filenames[1]:
|
||||||
ox_files[1].append(js_dir + filename)
|
ox_files[1].append(js_dir + filename)
|
||||||
filenames = filenames[0] + filenames[1]
|
filenames = filenames[0] + filenames[1]
|
||||||
for filename in os.listdir(source_path + js_dir):
|
for filename in sorted(os.listdir(source_path + js_dir)):
|
||||||
if not filename in filenames \
|
if not filename in filenames \
|
||||||
and not filename.startswith('.') \
|
and not filename.startswith('.') \
|
||||||
and not filename.endswith('~'):
|
and not filename.endswith('~'):
|
||||||
|
|
Loading…
Reference in a new issue