Browse Source

Alphabetically sort patterns list

Ensures that when the users lists the available patterns, they are presented in alphabetical order. Helps find the desired pattern faster.
pull/129/head
arduino-man 1 year ago committed by GitHub
parent
commit
e5901b9f44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      installer/client/cli/fabric.py

2
installer/client/cli/fabric.py

@ -78,7 +78,7 @@ def main():
standalone = Standalone(args, args.pattern)
if args.list:
try:
direct = os.listdir(config_patterns_directory)
direct = sorted(os.listdir(config_patterns_directory))
for d in direct:
print(d)
sys.exit()

Loading…
Cancel
Save