dotenv-rs / dotenv

Library to help supply environment variables in testing and development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fails on quoted or escaped equals signs

dzfranklin opened this issue · comments

the line

ROCKET_DATABASES='db={url=foo.sqlite}'

fails regardless of whether I surround with single or double quotes. I tried escaping the equals signs with backslashes, but that didn't help either.

commented

It should be
ROCKET_DATABASES={db={url="foo.sqlite"}}