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
Once an environment variable already exists, we cannot override it anymore.
.env file:
TEST=foo
Script executed in runme.dev:
export TEST=bar echo ${TEST} export TEST_2=foo export TEST_2=bar echo ${TEST_2}
Expected result:
bar bar
Actual result:
foo bar
A similar situation happens when sourcing another script that sets environment variables. These environment variables can also not be overridden.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Once an environment variable already exists, we cannot override it anymore.
.env file:
Script executed in runme.dev:
Expected result:
Actual result:
A similar situation happens when sourcing another script that sets environment variables. These environment variables can also not be overridden.
The text was updated successfully, but these errors were encountered: