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 having more than one shell variable on the right side of the equal sign in .env file, forego only extend the first one.
Steps to reproduce
NODE=${HOSTNAME}-${PORT}
Results
The variable is only half extended: the.hostname-${PORT} The variable should be fully extended: the.hostname-4242.
the.hostname-${PORT}
the.hostname-4242
Notes
The project vendors an outdated version of subosito/gotenv. With an up to date version of the later, the behavior is correct.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When having more than one shell variable on the right side of the equal sign in .env file, forego only extend the first one.
Steps to reproduce
NODE=${HOSTNAME}-${PORT}
(the inner vars are defined)Results
The variable is only half extended:
the.hostname-${PORT}
The variable should be fully extended:
the.hostname-4242
.Notes
The project vendors an outdated version of subosito/gotenv. With an up to date version of the later, the behavior is correct.
The text was updated successfully, but these errors were encountered: