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 29043f6 commit 3502db4Copy full SHA for 3502db4
src/features/linter-provider.ts
@@ -32,10 +32,10 @@ export default class FortranLintingProvider {
32
* so errorRegex can nevertheless be used to filter out errors and warnings
33
*
34
* see also: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
35
- */
+ */
36
const env = process.env;
37
env.LC_ALL = 'C';
38
- if (process.platform == 'win32') {
+ if (process.platform === 'win32') {
39
// Windows needs to know the path of other tools
40
if (!env.Path.includes(path.dirname(command))) {
41
env.Path = `${path.dirname(command)}${path.delimiter}${env.Path}`;
0 commit comments