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
In the VS Code alpha 51209bb task are no longer working:
Reverting the latest commit related to env vars (4cd1c0f) seems to fix this problem.
On OS X the env command does not support a --null option:
--null
The text was updated successfully, but these errors were encountered:
Thanks for reverting @weinand, looking at this now.
Sorry, something went wrong.
The problem with not using --null is that multi-line vars can always break the system. Consider the following:
export TEST_ENV_VAR="Multi LINE=string"
Which is output in env or printenv as:
env
printenv
TEST_ENV_VAR=Multi LINE=string
Lists all environment variables names: compgen -A variable
compgen -A variable
It seems to include additional ones on top of env though.
3ed0dfa
Tyriar
No branches or pull requests
In the VS Code alpha 51209bb
task are no longer working:
Reverting the latest commit related to env vars (4cd1c0f) seems to fix this problem.
On OS X the env command does not support a
--null
option:The text was updated successfully, but these errors were encountered: