Skip to content

Commit

Permalink
fix: parents added
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Sep 11, 2024
1 parent 1d7b67b commit ad166a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gaboon/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ad166a3

Please sign in to comment.