Skip to content

Commit

Permalink
chore: windows edge cases
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev committed Nov 28, 2024
1 parent bafa242 commit 6adc6fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algokit/core/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def append_project_to_vscode_workspace(project_path: Path, workspace_path: Path)

# Check if the project path is already in the workspace
if project_abs_path not in existing_abs_paths:
workspace.setdefault("folders", []).append({"path": str(processed_project_path)})
workspace.setdefault("folders", []).append({"path": str(processed_project_path).replace("\\", "/")})
_save_vscode_workspace(workspace_path, workspace)
logger.debug(f"Appended project {project_path} to workspace {workspace_path}.")
else:
Expand Down

0 comments on commit 6adc6fc

Please sign in to comment.