mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
fix sorting
This commit is contained in:
@@ -273,7 +273,7 @@ def main():
|
||||
incfile = open(args.includes_file, "w")
|
||||
incfile.write(includecmt)
|
||||
|
||||
for module in os.listdir(args.module_dir):
|
||||
for module in sorted(os.listdir(args.module_dir)):
|
||||
if len(args.module_list):
|
||||
if not module in args.module_list:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user