Skip to content

Commit

Permalink
Merge pull request #29352 from Microsoft/tyriar/25195
Browse files Browse the repository at this point in the history
Use sysnative cmd.exe for the default external terminal on Windows
  • Loading branch information
Tyriar authored Jun 23, 2017
2 parents f3a9600 + 422e018 commit 39c8aa4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const DEFAULT_TERMINAL_LINUX_READY = new TPromise<string>(c => {

export const DEFAULT_TERMINAL_OSX = 'Terminal.app';

export const DEFAULT_TERMINAL_WINDOWS = '%COMSPEC%';
export const DEFAULT_TERMINAL_WINDOWS = `${process.env.windir}\\${process.env.hasOwnProperty('PROCESSOR_ARCHITEW6432') ? 'Sysnative' : 'System32'}\\cmd.exe`;

export interface ITerminalConfiguration {
terminal: {
Expand Down

0 comments on commit 39c8aa4

Please sign in to comment.