Skip to content

Commit 79ef30e

Browse files
committed
sort for easier scanning
1 parent 36b7448 commit 79ef30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def run_or_die(cmd, error):
186186

187187
def test_examples_in_folder(folderpath):
188188
global success
189-
for example in os.listdir(folderpath):
189+
for example in sorted(os.listdir(folderpath)):
190190
examplepath = folderpath+"/"+example
191191
if os.path.isdir(examplepath):
192192
test_examples_in_folder(examplepath)

0 commit comments

Comments
 (0)