We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583dc03 commit f25c38dCopy full SHA for f25c38d
1 file changed
src/vs/workbench/contrib/tasks/common/jsonSchema_v2.ts
@@ -206,7 +206,7 @@ const group: IJSONSchema = {
206
const taskType: IJSONSchema = {
207
type: 'string',
208
enum: ['shell'],
209
- default: 'shell',
+ default: 'process',
210
description: nls.localize('JsonSchema.tasks.type', 'Defines whether the task is run as a process or as a command inside a shell.')
211
};
212
@@ -474,7 +474,7 @@ const processTask = Objects.deepClone(taskDescription);
474
processTask.properties!.type = {
475
476
enum: ['process'],
477
478
479
480
processTask.required!.push('command');
0 commit comments