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
When resolving variable references definitions in environment file take precedence over environment variables.
$ export A="fromEnv" $ cat .env A="fromFile" B="$A"
Expected behavior
After loading environment file, variable B should have value fromEnv.
B
fromEnv
Current behavior
After loading environment file, variable B has value fromFile
fromFile
The text was updated successfully, but these errors were encountered:
Prefer environment variables over local variables (#12)
cc6b967
Closes #11
Successfully merging a pull request may close this issue.
When resolving variable references definitions in environment file take precedence over environment variables.
Example
Expected behavior
After loading environment file, variable
B
should have valuefromEnv
.Current behavior
After loading environment file, variable
B
has valuefromFile
The text was updated successfully, but these errors were encountered: