1
0
Fork 0
mirror of synced 2024-06-06 09:21:09 -04:00
This commit is contained in:
Anish Athalye 2018-04-06 22:26:16 +05:30
parent 8d08e4b1ad
commit ee480d931b

View file

@ -67,7 +67,7 @@ class Link(dotbot.Plugin):
glob_base = path[:glob_star_loc]
for glob_full_item in glob_results:
glob_item = glob_full_item[len(glob_base):]
glob_link_destination = destination + glob_item
glob_link_destination = os.path.join(destination, glob_item)
if create:
success &= self._create(glob_link_destination)
if force or relink: