diff --git a/crates/radicle-cli/src/commands/debug.rs b/crates/radicle-cli/src/commands/debug.rs index 21a3f62a..fb43989c 100644 --- a/crates/radicle-cli/src/commands/debug.rs +++ b/crates/radicle-cli/src/commands/debug.rs @@ -71,9 +71,9 @@ fn debug(profile: Option<&Profile>) -> anyhow::Result<()> { rad_exe: std::env::current_exe().ok(), rad_version: VERSION, radicle_node_version: stdout_of("radicle-node", &["--version"]) - .unwrap_or("".into()), + .unwrap_or("radicle-node ".into()), git_remote_rad_version: stdout_of("git-remote-rad", &["--version"]) - .unwrap_or("".into()), + .unwrap_or("git-remote-rad ".into()), git_version: stdout_of("git", &["--version"]).unwrap_or("".into()), ssh_version: stderr_of("ssh", &["-V"]).unwrap_or("".into()), git_head: GIT_HEAD,