File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ function getOutputChannel(): vscode.OutputChannel {
6060}
6161
6262function showError ( ) {
63- vscode . window . showWarningMessage ( localize ( 'gulpTaskDetectError ' , 'Problem finding jake tasks. See the output for more information.' ) ,
63+ vscode . window . showWarningMessage ( localize ( 'jakeTaskDetectError ' , 'Problem finding jake tasks. See the output for more information.' ) ,
6464 localize ( 'jakeShowOutput' , 'Go to output' ) ) . then ( ( ) => {
6565 getOutputChannel ( ) . show ( true ) ;
6666 } ) ;
@@ -272,7 +272,7 @@ class TaskDetector {
272272 private updateProvider ( ) : void {
273273 if ( ! this . taskProvider && this . detectors . size > 0 ) {
274274 const thisCapture = this ;
275- this . taskProvider = vscode . workspace . registerTaskProvider ( 'gulp ' , {
275+ this . taskProvider = vscode . workspace . registerTaskProvider ( 'jake ' , {
276276 provideTasks ( ) : Promise < vscode . Task [ ] > {
277277 return thisCapture . getTasks ( ) ;
278278 } ,
You can’t perform that action at this time.
0 commit comments