Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
bin: Improve message when command was not found
Erik Kundt committed 2 years ago
commit 8d9962c8ffad74d5b68ae07923f13f5efe7b5cc2
parent b03b4cfe2f03456cc40b3cd13f5659efe7d31725
1 file changed +1 -1
modified bin/main.rs
@@ -130,7 +130,7 @@ fn run_other(exe: &str, args: &[OsString]) -> Result<(), Option<anyhow::Error>>
            );
        }
        other => Err(Some(anyhow!(
-
            "`{other}` is not a command. See `rad-tui --help` for a list of commands.",
+
            "`rad-tui {other}` is not a command. See `rad-tui --help` for a list of commands.",
        ))),
    }
}