diff --git a/pydsdl/_dsdl_definition.py b/pydsdl/_dsdl_definition.py index 3caada3..1832e7f 100644 --- a/pydsdl/_dsdl_definition.py +++ b/pydsdl/_dsdl_definition.py @@ -164,7 +164,8 @@ def from_first_in(cls: Type["DSDLDefinition"], dsdl_path: Path, valid_dsdl_roots def __init__(self, file_path: Path, root_namespace_path: Path): """ """ # Normalizing the path and reading the definition text - self._file_path = Path(file_path).resolve() + # NOTE: to make it work with Bazel we cannot do that, as Bazel creates symlink in a separate workspace + self._file_path = Path(file_path) # .resolve() del file_path if not self._file_path.exists():