We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea29ce commit 05396cbCopy full SHA for 05396cb
src/svn.ts
@@ -124,6 +124,12 @@ export class Svn {
124
if (cwd) {
125
defaults.cwd = cwd;
126
}
127
+
128
+ defaults.env = Object.assign({}, proc.env, options.env || {}, {
129
+ LC_ALL: "en_US.UTF-8",
130
+ LANG: "en_US.UTF-8"
131
+ });
132
133
const process = cp.spawn(this.svnPath, args, defaults);
134
135
const disposables: IDisposable[] = [];
0 commit comments