Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: add SHELL environment variable to "rad debug" output
Lars Wirzenius committed 2 years ago
commit 0d00528d48838067d77309a3237cb559ffebb253
parent 660236225e1fb9e8531129ad83f695132ce2451e
1 file changed +1 -1
modified radicle-cli/src/commands/debug.rs
@@ -60,7 +60,7 @@ fn debug(profile: &Profile) -> anyhow::Result<()> {
    let env = HashMap::from_iter(env::vars().filter_map(|(k, v)| {
        if k == "RAD_PASSPHRASE" {
            Some((k, "<REDACTED>".into()))
-
        } else if k.starts_with("RAD_") || k.starts_with("SSH_") || k == "PATH" {
+
        } else if k.starts_with("RAD_") || k.starts_with("SSH_") || k == "PATH" || k == "SHELL" {
            Some((k, v))
        } else {
            None