Skip to content

Commit

Permalink
Use 64-bit cmd as default external terminal
Browse files Browse the repository at this point in the history
Fixes #25195
  • Loading branch information
Tyriar committed May 25, 2017
1 parent f95866f commit a816b37
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 a816b37

Please sign in to comment.