fix: getenv treats an explicitly-empty value as unset #85
Reference in New Issue
Block a user
Delete Branch "benvin/getenv-lookupenv"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #69
Why
getenvreturned the fallback wheneveros.Getenvwas empty, so an intentionally-empty env var could not override a non-empty default.Changes
os.LookupEnvto distinguish unset from set-but-empty.Validation
make e2epasses.