Skip to content

Commit

Permalink
feat: properly format path
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollorion committed Jun 6, 2024
1 parent afcc19e commit 84003c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom/commands/update_vcs_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def update_vcs_config(vcs_config_file_path: str):
continue

if stack_vcs_config.get("BackendPath"):
project_root = Path(stack_vcs_config.get("BackendPath")).parent.as_posix() + "/"
project_root = "/" + stack_vcs_config.get("BackendPath").strip("/") + "/"
else:
project_root = None

Expand Down

0 comments on commit 84003c1

Please sign in to comment.