From 25f8b7e778121fb14a77573618e9e3fc50153062 Mon Sep 17 00:00:00 2001 From: Matt Richards Date: Mon, 15 Feb 2021 20:58:50 +1000 Subject: [PATCH] Revert "add path normalization for windows support" This reverts commit 2ab0fc1b3cdc3eb061b6eddeb9f28523330a2e3e. --- dotbot/plugins/link.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotbot/plugins/link.py b/dotbot/plugins/link.py index 7a82e68..b52f4b5 100644 --- a/dotbot/plugins/link.py +++ b/dotbot/plugins/link.py @@ -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)