Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: Small improvements to `rad auth` error output
cloudhead committed 2 years ago
commit 9cd08a01db72752e4d844818ba9bc3e4f1912f9c
parent 780f0eff37c48aff73f6e29dc327b8fa981d85f6
1 file changed +2 -2
modified radicle-cli/src/commands/auth.rs
@@ -84,13 +84,13 @@ pub fn init(options: Options) -> anyhow::Result<()> {
    if let Ok(version) = radicle::git::version() {
        if version < radicle::git::VERSION_REQUIRED {
            term::warning(format!(
-
                "Your git version is unsupported, please upgrade to {} or later",
+
                "Your Git version is unsupported, please upgrade to {} or later",
                radicle::git::VERSION_REQUIRED,
            ));
            term::blank();
        }
    } else {
-
        anyhow::bail!("Error retrieving git version; please check your installation");
+
        anyhow::bail!("a Git installation is required for Radicle to run");
    }

    let alias: Alias = if let Some(alias) = options.alias {