mirror of
https://github.com/Microsoft/vscode
synced 2024-10-29 21:37:13 +00:00
parent
d28ace31aa
commit
039ee970ad
2 changed files with 2 additions and 2 deletions
|
@ -502,7 +502,7 @@ class Launch implements ILaunch {
|
|||
}
|
||||
|
||||
public resolveConfiguration(config: IConfig): TPromise<IConfig> {
|
||||
const result = objects.deepClone(config) as IConfig;
|
||||
const result = objects.clone(config) as IConfig;
|
||||
// Set operating system specific properties #1873
|
||||
const setOSProperties = (flag: boolean, osConfig: IEnvConfig) => {
|
||||
if (flag && osConfig) {
|
||||
|
|
|
@ -210,7 +210,7 @@ export class Adapter {
|
|||
};
|
||||
properties['internalConsoleOptions'] = INTERNAL_CONSOLE_OPTIONS_SCHEMA;
|
||||
|
||||
const osProperties = objects.deepClone(properties);
|
||||
const osProperties = objects.clone(properties);
|
||||
properties['windows'] = {
|
||||
type: 'object',
|
||||
description: nls.localize('debugWindowsConfiguration', "Windows specific launch configuration attributes."),
|
||||
|
|
Loading…
Reference in a new issue