sorted
Some checks failed
/ job (push) Failing after 7s

This commit is contained in:
Marc Beninca 2024-04-27 00:06:41 +02:00
parent 9444b08dee
commit 0fc4690cd1
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -4,8 +4,8 @@ COMMANDS_PREFIX = 'cd-'
def cd_list_environment():
for variable, value in os.environ.items():
print(variable, value)
for variable, value in sorted(os.environ.items()):
print(variable, '=', value)
def install_commands(path):