From 4f6f0608637ff1f59589822dedd74f269dafc518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Wed, 5 Feb 2020 10:31:29 -0800 Subject: [PATCH] manifest: don't take normpath in ManifestProject.__init__ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We should be using PurePath comparison if we need to compare paths. Signed-off-by: Martí Bolívar --- src/west/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/west/manifest.py b/src/west/manifest.py index d506451..9e3f5db 100644 --- a/src/west/manifest.py +++ b/src/west/manifest.py @@ -1418,7 +1418,7 @@ class ManifestProject(Project): self.topdir = topdir self._abspath = None self._posixpath = None - self._path = os.path.normpath(path) if path else None + self._path = path # Extension commands. self.west_commands = west_commands