Fix bug
This commit is contained in:
parent
8d08e4b1ad
commit
ee480d931b
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class Link(dotbot.Plugin):
|
||||||
glob_base = path[:glob_star_loc]
|
glob_base = path[:glob_star_loc]
|
||||||
for glob_full_item in glob_results:
|
for glob_full_item in glob_results:
|
||||||
glob_item = glob_full_item[len(glob_base):]
|
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:
|
if create:
|
||||||
success &= self._create(glob_link_destination)
|
success &= self._create(glob_link_destination)
|
||||||
if force or relink:
|
if force or relink:
|
||||||
|
|
Loading…
Reference in a new issue