Correct LC_ALL. Resolves #26227

This commit is contained in:
Anthony Sottile 2017-05-10 13:37:52 -07:00
parent 5596132647
commit 0b7f4425ef

View file

@ -386,7 +386,7 @@ export class Git {
options.env = assign({}, process.env, this.env, options.env || {}, {
VSCODE_GIT_COMMAND: args[0],
LC_ALL: 'en_US',
LC_ALL: 'en_US.UTF-8',
LANG: 'en_US.UTF-8'
});
@ -954,4 +954,4 @@ export class Repository {
return { hash: match[1], message: match[2] };
}
}
}