Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Don't do anything with an empty command #409

Open
wants to merge 4 commits into
base: v1.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion crates/goose-cli/src/prompt/rustyline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ impl Prompt for RustylinePrompt {
Err(e) => {
match e {
rustyline::error::ReadlineError::Interrupted => (),
rustyline::error::ReadlineError::Eof => (),
_ => eprintln!("Input error: {}", e),
}
return Ok(Input {
Expand All @@ -316,7 +317,13 @@ impl Prompt for RustylinePrompt {
};
message_text = message_text.trim().to_string();

if message_text.eq_ignore_ascii_case("/exit") || message_text.eq_ignore_ascii_case("/quit")
if message_text.is_empty() {
Ok(Input {
input_type: InputType::AskAgain,
content: None,
})
} else if message_text.eq_ignore_ascii_case("/exit")
|| message_text.eq_ignore_ascii_case("/quit")
{
Ok(Input {
input_type: InputType::Exit,
Expand Down
Loading