parent
608c3711e9
commit
5bbcb10091
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ from rwx import ps
|
||||||
|
|
||||||
COMMANDS_PREFIX = 'cd-'
|
COMMANDS_PREFIX = 'cd-'
|
||||||
|
|
||||||
environment = sorted(os.environ.items())
|
environment = os.environ
|
||||||
project = Project(environment)
|
project = Project(environment)
|
||||||
projects = Projects(environment)
|
projects = Projects(environment)
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ def cd_clone_branch():
|
||||||
|
|
||||||
|
|
||||||
def cd_list_environment():
|
def cd_list_environment():
|
||||||
for variable, value in environment:
|
for variable, value in sorted(environment.items()):
|
||||||
print(variable, '=', value)
|
print(variable, '=', value)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue