2022-02-05 21:13:43 +01:00
|
|
|
self._pytex_root_dir_type: PyTeXRootDirType = pytex_root_dir_type
|
|
|
|
self._root_dir: Path = {
|
|
|
|
PyTeXRootDirType.BUILD: build_dir_spec.build_root,
|
2022-02-06 20:39:27 +01:00
|
|
|
PyTeXRootDirType.PYTEX_SOURCE: build_dir_spec.pytex_source_root,
|
2022-02-05 21:13:43 +01:00
|
|
|
PyTeXRootDirType.DOC: build_dir_spec.doc_root,
|
2022-02-06 20:39:27 +01:00
|
|
|
PyTeXRootDirType.TEX_SOURCE: build_dir_spec.tex_source_root
|
2022-02-05 21:13:43 +01:00
|
|
|
}[self._pytex_root_dir_type]
|