gobuffalo / envy

Envy makes working with ENV variables in Go trivial.
MIT License
156 stars 21 forks source link

Fix unused variable bug in Map() #24

Closed DuskEagle closed 5 years ago

DuskEagle commented 5 years ago

In Map(), we create a copy of the env map to return to the user, but we end up returning our internal map instead. This fixes that bug and returns our copied map to the user.

markbates commented 5 years ago

Thanks!