Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle: Small error message improvements
cloudhead committed 2 years ago
commit 2d710936087a0a41fc5f31bf2ab2c3dbe0a6e77f
parent e7110efbf639b89878b55e3b325bce4586fe3718
1 file changed +2 -2
modified radicle/src/profile.rs
@@ -139,11 +139,11 @@ pub enum Error {
    Keystore(#[from] keystore::Error),
    #[error(transparent)]
    MemorySigner(#[from] keystore::MemorySignerError),
-
    #[error("no profile found at path '{0}'")]
+
    #[error("no radicle profile found at path '{0}'")]
    NotFound(PathBuf),
    #[error("error connecting to ssh-agent: {0}")]
    Agent(#[from] crate::crypto::ssh::agent::Error),
-
    #[error("profile key `{0}` is not registered with ssh-agent")]
+
    #[error("radicle key `{0}` is not registered; run `rad auth` to register it with ssh-agent")]
    KeyNotRegistered(PublicKey),
    #[error(transparent)]
    PolicyStore(#[from] node::policy::store::Error),