Fix .env.toml paths (#15645)

This PR fixes the `.env.toml` paths, since we inadvertently broke them
in https://github.com/zed-industries/zed/pull/15557.

There's likely a better way we can do this, but I wanted to restore the
previous behavior, for now.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-01 15:43:29 -04:00 committed by GitHub
parent 4bfb8fda8d
commit 60127f2a8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,7 @@
use collab::env::get_dotenv_vars;
fn main() -> anyhow::Result<()> {
for (key, value) in get_dotenv_vars()? {
for (key, value) in get_dotenv_vars(".")? {
println!("export {}=\"{}\"", key, value);
}
Ok(())