Skip to content

Commit cbc6c7f

Browse files
committed
Jake task detection has been called gulp for a long time
1 parent a2b2d31 commit cbc6c7f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/jake/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function getOutputChannel(): vscode.OutputChannel {
6060
}
6161

6262
function 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
},

0 commit comments

Comments
 (0)