From 62f3807dcb4844f74b59c7bcfb81c9a914da7353 Mon Sep 17 00:00:00 2001 From: Jeff Gould Date: Wed, 17 Jul 2024 07:22:53 -0700 Subject: fix(history): logic for store_failed=false (#2284) * chore: ignore .envrc * fix(history): Check passed exit param instead of not-yet set h.exit --- crates/atuin/src/command/client/history.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/atuin/src/command/client/history.rs b/crates/atuin/src/command/client/history.rs index a9970559..17b400f3 100644 --- a/crates/atuin/src/command/client/history.rs +++ b/crates/atuin/src/command/client/history.rs @@ -384,7 +384,7 @@ impl Cmd { return Ok(()); } - if !settings.store_failed && h.exit != 0 { + if !settings.store_failed && exit > 0 { debug!("history has non-zero exit code, and store_failed is false"); // the history has already been inserted half complete. remove it -- cgit v1.3.1