manifest: don't take normpath in ManifestProject.__init__
We should be using PurePath comparison if we need to compare paths. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
parent
dbc1a87d84
commit
4f6f060863
|
@ -1418,7 +1418,7 @@ class ManifestProject(Project):
|
||||||
self.topdir = topdir
|
self.topdir = topdir
|
||||||
self._abspath = None
|
self._abspath = None
|
||||||
self._posixpath = None
|
self._posixpath = None
|
||||||
self._path = os.path.normpath(path) if path else None
|
self._path = path
|
||||||
|
|
||||||
# Extension commands.
|
# Extension commands.
|
||||||
self.west_commands = west_commands
|
self.west_commands = west_commands
|
||||||
|
|
Loading…
Reference in New Issue