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

fix bug: debug error if space in project path #508

Merged
merged 2 commits into from
Mar 29, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
"text": "target remote localhost:3333"
},
{
"text": "^\"file \\${file}\""
"text": "^\"file \\\"\\${file}\\\"\""
},
{
"text": "load"
Expand Down
2 changes: 1 addition & 1 deletion src/debug/configurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class ArduinoDebugConfigurationProvider implements vscode.DebugConfigurat
text: "target remote localhost:3333",
},
{
text: "file ${file}",
text: "file \"${file}\"",
},
{
text: "load",
Expand Down