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 5ed32f4 commit 9d63f26Copy full SHA for 9d63f26
src/misc.js
@@ -14,9 +14,11 @@ import spawn from 'cross-spawn';
14
15
16
export function patchOSEnviron({ caller, useBuiltinPIOCore=true, extraPath, extraVars }) {
17
- // Fix for platformio-atom-ide/issues/112
18
process.env.PLATFORMIO_CALLER = caller;
19
- process.env.LC_ALL = 'en_US.UTF-8';
+ // Fix for platformio-atom-ide/issues/112
+ if (process.platform === 'darwin') {
20
+ process.env.LC_ALL = 'en_US.UTF-8';
21
+ }
22
if (caller === 'atom') {
23
process.env.PLATFORMIO_DISABLE_PROGRESSBAR = 'true';
24
}
0 commit comments