Skip to content

Commit 88a18bc

Browse files
committed
Convert to private command
1 parent af97378 commit 88a18bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/project/manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default class ProjectManager {
9999
vscode.commands.registerCommand('platformio-ide.refreshProjectTasks', () =>
100100
this._taskManager.refresh({ force: true })
101101
),
102-
vscode.commands.registerCommand('platformio-ide.privateRunTask', (task) =>
102+
vscode.commands.registerCommand('platformio-ide._runProjectTask', (task) =>
103103
this._taskManager.runTask(task)
104104
),
105105
];

src/project/task-tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default class ProjectTasksTreeProvider {
2929
treeItem.tooltip = task.title;
3030
treeItem.command = {
3131
title: task.title,
32-
command: 'platformio-ide.privateRunTask',
32+
command: 'platformio-ide._runProjectTask',
3333
arguments: [task],
3434
};
3535
if (!task.coreEnv && task.multienv && this.multiEnvProject) {

0 commit comments

Comments
 (0)