We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a71ae26 + 37ff26e commit 9b77190Copy full SHA for 9b77190
autogpt/workspace.py
@@ -37,6 +37,7 @@ def safe_path_join(base: Path, *paths: str | Path) -> Path:
37
Returns:
38
Path: The joined path
39
"""
40
+ base = base.resolve()
41
joined_path = base.joinpath(*paths).resolve()
42
43
if CFG.restrict_to_workspace and not joined_path.is_relative_to(base):
0 commit comments