Skip to content

Commit 4e77122

Browse files
committed
apply another sort
1 parent 14a9db1 commit 4e77122

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ def write_variants_to_file():
11051105
with target.open("w") as fid:
11061106
fid.write("buildvariants:\n")
11071107

1108-
for name, func in getmembers(mod, isfunction):
1108+
for name, func in sorted(getmembers(mod, isfunction)):
11091109
if not name.endswith("_variants"):
11101110
continue
11111111
if not name.startswith("create_"):

0 commit comments

Comments
 (0)