mirror of
1
0
Fork 0

Revert "add path normalization for windows support"

This reverts commit 2ab0fc1b3c.
This commit is contained in:
Matt Richards 2021-02-15 20:58:50 +10:00
parent 2ab0fc1b3c
commit 25f8b7e778
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class Link(dotbot.Plugin):
success = True
defaults = self._context.defaults().get('link', {})
for destination, source in links.items():
destination = os.path.normpath(os.path.expandvars(destination))
destination = os.path.expandvars(destination)
relative = defaults.get('relative', False)
canonical_path = defaults.get('canonicalize-path', True)
force = defaults.get('force', False)
@ -51,7 +51,7 @@ class Link(dotbot.Plugin):
if test is not None and not self._test_success(test):
self._log.lowinfo('Skipping %s' % destination)
continue
path = os.path.normpath(os.path.expandvars(os.path.expanduser(path)))
path = os.path.expandvars(os.path.expanduser(path))
if use_glob:
self._log.debug("Globbing with path: " + str(path))
glob_results = glob.glob(path)