Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 65f3e23

Browse files
authored
Merge pull request #508 from Microsoft/yiri
fix bug: debug error if space in project path
2 parents 3c7d18b + c3911fd commit 65f3e23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
"text": "target remote localhost:3333"
156156
},
157157
{
158-
"text": "^\"file \\${file}\""
158+
"text": "^\"file \\\"\\${file}\\\"\""
159159
},
160160
{
161161
"text": "load"

src/debug/configurationProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class ArduinoDebugConfigurationProvider implements vscode.DebugConfigurat
5252
text: "target remote localhost:3333",
5353
},
5454
{
55-
text: "file ${file}",
55+
text: "file \"${file}\"",
5656
},
5757
{
5858
text: "load",

0 commit comments

Comments
 (0)