-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Invalid env var separator on bash
We use `.` as the env var separator in order to differentiate between the prefix and different levels of the config vs individual config field names (which would be in UPPER_SNAKE_CASE). However, `.` is not a valid bash identifier, so we need to use something different. Switch to using a double underscore (`__`) instead of `.`. This way, we can support bash and still be able to differentiate between the prefix and different levels of the config vs individual config field names. Closes: #219
- Loading branch information
1 parent
c15d9e3
commit d85e85d
Showing
2 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters