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 be6dff4 commit 79a0966Copy full SHA for 79a0966
1 file changed
src/extension.ts
@@ -1199,7 +1199,7 @@ class EideTaskProvider implements vscode.TaskProvider {
1199
executable: platform.osType() == 'win32' ? `${process.env['EIDE_MSYS']}/bash.exe` : '/bin/bash',
1200
shellArgs: ['-c'],
1201
cwd: definition?.options?.cwd || workspaceManager.getCurrentFolder()?.path,
1202
- env: utility.mergeEnv(process.env, {})
+ env: utility.mergeEnv(process.env, definition.env || {})
1203
});
1204
1205
task.group = definition.group;
0 commit comments