Skip to content

Commit 9b77190

Browse files
authored
Merge pull request Significant-Gravitas#2573 from Significant-Gravitas/fix/symlinks-in-workspace-path
fix(workspace): resolve symlinks in workspace path before checking
2 parents a71ae26 + 37ff26e commit 9b77190

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

autogpt/workspace.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def safe_path_join(base: Path, *paths: str | Path) -> Path:
3737
Returns:
3838
Path: The joined path
3939
"""
40+
base = base.resolve()
4041
joined_path = base.joinpath(*paths).resolve()
4142

4243
if CFG.restrict_to_workspace and not joined_path.is_relative_to(base):

0 commit comments

Comments
 (0)