You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @joho, I noticed some unexpected behavior when using godotenv from the command line. When passing multiple .env files, if one listed first does not exist, it looks like it skips processing the rest.
For example:
$ cat .env
FOO="Using .env"
$ godotenv -f ".env,.env.doesnotexist" env | grep FOO
FOO=Using .env
$ godotenv -f ".env.doesnotexist,.env" env | grep FOO
# FOO does not get set