diff --git a/gaboon/config.py b/gaboon/config.py index 9a28da5..97130b3 100644 --- a/gaboon/config.py +++ b/gaboon/config.py @@ -229,7 +229,10 @@ def get_base_dependencies_install_path(self) -> Path: base_install_path = project_root / self.project.get( DEPENDENCIES_FOLDER, DEPENDENCIES_FOLDER ) - base_install_path.mkdir(exist_ok=True) + base_install_path.mkdir( + exist_ok=True, + parents=True, + ) return base_install_path def get_root(self) -> Path: