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

Commit 9e33283

Browse files
author
Yiri Wen
committed
fix bug: debug error if space in project path
1 parent fedccc6 commit 9e33283

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
@@ -51,7 +51,7 @@ export class ArduinoDebugConfigurationProvider implements vscode.DebugConfigurat
5151
text: "target remote localhost:3333",
5252
},
5353
{
54-
text: "file ${file}",
54+
text: "file \"${file}\"",
5555
},
5656
{
5757
text: "load",

0 commit comments

Comments
 (0)