Skip to content

Commit bf9d23a

Browse files
make sure the path is normalized
1 parent e0a80e9 commit bf9d23a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/cli_cmds/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def process_pyproject_config(args: Namespace) -> Namespace:
220220

221221
def project_root_from_pyproject_file(pyproject_file_path: Path) -> Path:
222222
"""Assume that the pyproject.toml file is in the root of the project."""
223-
return pyproject_file_path.parent
223+
return pyproject_file_path.parent.resolve()
224224

225225

226226
def handle_optimize_all_arg_parsing(args: Namespace) -> Namespace:

0 commit comments

Comments
 (0)