mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
fix #119677
This commit is contained in:
@@ -86,7 +86,7 @@ async function transformToTerminalProfiles(entries: IterableIterator<[string, IT
|
||||
args = source.args;
|
||||
} else {
|
||||
originalPaths = Array.isArray(profile.path) ? profile.path : [profile.path];
|
||||
args = profile.args;
|
||||
args = platform.isWindows ? profile.args : Array.isArray(profile.args) ? profile.args : undefined;
|
||||
}
|
||||
|
||||
const paths = originalPaths.slice();
|
||||
|
||||
Reference in New Issue
Block a user