fix: remove -r for --recipe in error message (#2159)

This commit is contained in:
Kalvin C
2025-04-11 11:34:46 -07:00
committed by GitHub
parent ea58a2bb15
commit baa5be2bc0

View File

@@ -463,7 +463,7 @@ pub async fn cli() -> Result<()> {
}
}
(None, None, None) => {
eprintln!("Error: Must provide either --instructions (-i), --text (-t), or --recipe (-r). Use -i - for stdin.");
eprintln!("Error: Must provide either --instructions (-i), --text (-t), or --recipe. Use -i - for stdin.");
std::process::exit(1);
}
};