mirror of
1
0
Fork 0
This commit is contained in:
Anish Athalye 2018-04-06 22:26:16 +05:30
parent 8d08e4b1ad
commit ee480d931b
1 changed files with 1 additions and 1 deletions

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: