We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8cb705 + 407ff14 commit 025e2abCopy full SHA for 025e2ab
condax/core.py
@@ -89,11 +89,11 @@ def update_package(package):
89
conda.detemine_executables_from_env(package)
90
)
91
92
- to_delete = executables_linked_in_updated - executables_already_linked
93
- to_create = executables_already_linked - executables_linked_in_updated
+ to_create = executables_linked_in_updated - executables_already_linked
+ to_delete = executables_already_linked - executables_linked_in_updated
94
95
- remove_links(to_delete)
96
create_links(to_create)
+ remove_links(to_delete)
97
print(f"{package} update successfully")
98
99
except subprocess.CalledProcessError:
0 commit comments