Skip to content

Commit 1dd328f

Browse files
committed
Fixed an issue when project tasks with a title didn't work // Resolve platformio#3274
1 parent 77b0dc1 commit 1dd328f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## 2.5.2 (2022-08-??)
4+
5+
- Fixed an issue when project tasks with a title didn't work (issue [#3274](https://github.com/platformio/platformio-vscode-ide/issues/3274))
6+
37
## 2.5.1 (2022-07-28)
48

59
**Requires VSCode 1.63 or above**

src/project/tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default class ProjectTaskManager {
120120
task: projectTask.id,
121121
},
122122
vscode.workspace.getWorkspaceFolder(vscode.Uri.file(this.projectDir)),
123-
projectTask.title,
123+
projectTask.id,
124124
ProjectTaskManager.PROVIDER_TYPE,
125125
new vscode.ProcessExecution(
126126
IS_WINDOWS ? 'platformio.exe' : 'platformio',

0 commit comments

Comments
 (0)