mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-11 14:19:00 +00:00
fix normpath for #76
This commit is contained in:
@@ -64,7 +64,7 @@ class Installer:
|
|||||||
if not os.path.exists(src):
|
if not os.path.exists(src):
|
||||||
self.log.err('source dotfile does not exist: {}'.format(src))
|
self.log.err('source dotfile does not exist: {}'.format(src))
|
||||||
return []
|
return []
|
||||||
dst = os.path.expanduser(dst).rstrip(os.sep)
|
dst = os.path.normpath(os.path.expanduser(dst))
|
||||||
if self.totemp:
|
if self.totemp:
|
||||||
# ignore actions
|
# ignore actions
|
||||||
return self.install(templater, src, dst, actions=[])
|
return self.install(templater, src, dst, actions=[])
|
||||||
|
|||||||
Reference in New Issue
Block a user