Skip to content

Commit c0a6d2a

Browse files
cscheidjuliasilge
andauthored
don't prepend delimiter to path (#778)
* don't prepend delimiter to path * Update changelog * ours --------- Co-authored-by: Julia Silge <[email protected]>
1 parent dd3098b commit c0a6d2a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 1.124.0 (unreleased)
44

55
- Add yaml frontmatter validation to visual editor (<https://github.com/quarto-dev/quarto/pull/744>).
6+
- Do not prepend path delimiter to path when Quarto is detected (<https://github.com/quarto-dev/quarto/pull/778>).
67

78
## 1.123.0 (Release on 2025-06-17)
89

apps/vscode/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export async function activate(context: vscode.ExtensionContext) {
7575
// ensure quarto is on the path
7676
context.environmentVariableCollection.prepend(
7777
"PATH",
78-
path.delimiter + quartoContext.binPath + path.delimiter
78+
quartoContext.binPath + path.delimiter
7979
);
8080

8181
// status bar

0 commit comments

Comments
 (0)