postDebugTask-schema default value is ''

fixes #46675
This commit is contained in:
isidor
2018-03-27 18:29:32 +02:00
parent 3f205ed5d7
commit 3ff0f35fb9
@@ -212,12 +212,12 @@ export class Adapter {
};
properties['preLaunchTask'] = {
type: ['string', 'null'],
default: null,
default: '',
description: nls.localize('debugPrelaunchTask', "Task to run before debug session starts.")
};
properties['postDebugTask'] = {
type: ['string', 'null'],
default: null,
default: '',
description: nls.localize('debugPostDebugTask', "Task to run after debug session ends.")
};
properties['internalConsoleOptions'] = INTERNAL_CONSOLE_OPTIONS_SCHEMA;