We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460350f commit 9f9b1bcCopy full SHA for 9f9b1bc
ecbundle/util.py
@@ -124,7 +124,7 @@ def symlink_force(target, link_name):
124
os.remove(link_name)
125
os.symlink(target_orig, link_name)
126
127
- if not os.path.exists(link_name):
+ if os.path.exists(target_orig) and not os.path.exists(link_name):
128
error(
129
"ERROR: Failed to create valid link from {0} to {1}".format(
130
link_name, target_orig
0 commit comments