mirror of
1
0
Fork 0

Fix, don't normpath when source is None

notice: os.path.normpath('') => '.'
This commit is contained in:
SuJiKiNen 2019-03-05 21:50:36 +08:00
parent f38b03a40b
commit 67887e62fe
1 changed files with 4 additions and 2 deletions

View File

@ -25,8 +25,10 @@ class Link(dotbot.Plugin):
defaults = self._context.defaults().get('link', {})
for destination, source in links.items():
destination = os.path.expandvars(destination)
destination = os.path.normpath(destination)
source = os.path.normpath(source)
if destination:
destination = os.path.normpath(destination)
if source:
source = os.path.normpath(source)
relative = defaults.get('relative', False)
force = defaults.get('force', False)
relink = defaults.get('relink', False)