Merge branch 'master' of https://git.cscherr.de/PlexSheep/rs-basic
All checks were successful
cargo devel CI / cargo CI (push) Successful in 3m16s

This commit is contained in:
Christoph J. Scherr 2024-06-27 13:53:38 +02:00
commit c2ec251cdb

View file

@ -41,7 +41,7 @@ fn repl(conn: &mut SqliteConnection) -> anyhow::Result<()> {
loop {
lib::read_buf_interactive(&mut buf)?;
buf = buf.to_uppercase();
if buf.starts_with("HELP") || buf.starts_with("?") {
if buf.starts_with("HELP") || buf.starts_with('?') {
println!("{}", HELP_TEXT.bright_blue())
} else if buf.starts_with("EXIT") || buf.is_empty() {
break;