Skip to content

Commit f053c85

Browse files
committed
🚒 Fixing order of configuration in git-repo config
fixes #48 Signed-off-by: Guyzmo <[email protected]>
1 parent af4aca3 commit f053c85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_repo/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def setup_service(service):
507507
else:
508508
services = RepositoryService.service_map.values()
509509

510-
for service in services:
510+
for service in sorted(services, key=lambda s: s.name):
511511
print('Do you want to configure the {} service?'.format(service.name))
512512
if 'n' in input(' [Yn]> ').lower():
513513
continue

0 commit comments

Comments
 (0)