diff --git a/atuin-client/src/import/zsh.rs b/atuin-client/src/import/zsh.rs index 50c64cb..19917da 100644 --- a/atuin-client/src/import/zsh.rs +++ b/atuin-client/src/import/zsh.rs @@ -32,7 +32,11 @@ fn default_histpath() -> Result { break Ok(histpath); } } - None => break Err(eyre!("Could not find history file. Try setting $HISTFILE")), + None => { + break Err(eyre!( + "Could not find history file. Try setting and exporting $HISTFILE" + )) + } } } }