File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 ] ;
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments