From be6867a94f8483de6fbb00bf9646c940cc2df403 Mon Sep 17 00:00:00 2001 From: Sander Date: Thu, 19 Sep 2024 17:48:06 +0000 Subject: [PATCH] devenv: fix dotfile override for `devenv test` --- devenv/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devenv/src/main.rs b/devenv/src/main.rs index 3ccf80e77..25d36634a 100644 --- a/devenv/src/main.rs +++ b/devenv/src/main.rs @@ -57,7 +57,7 @@ async fn main() -> Result<()> { "Overriding .devenv to {}", tmpdir.path().file_name().unwrap().to_str().unwrap() )); - options.devenv_root = Some(tmpdir.path().to_path_buf()); + options.devenv_dotfile = Some(tmpdir.path().to_path_buf()); } }