We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extendEnv
shell: true
The extendEnv option does not work as intended when combined with the shell: true option:
process.env.TEST = 'test' const result = execa.sync('echo $TEST', { shell: true, env: {}, extendEnv: true }) assert.equal(result.stdout, 'test')
stdout is an empty string but should be 'test'
stdout
'test'
I will work on a PR to fix this.
The text was updated successfully, but these errors were encountered:
shell
I've opened a PR at #184
Sorry, something went wrong.
Fix extendEnv option not working with shell option (#184)
e897f44
Fixes #183 Options parsing was not correct for the `extendEnv` option which made it not work when combined with `shell: true` option.
No branches or pull requests
The
extendEnv
option does not work as intended when combined with theshell: true
option:stdout
is an empty string but should be'test'
I will work on a PR to fix this.
The text was updated successfully, but these errors were encountered: