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
✗ CI failure Lars Wirzenius committed 2 years ago
commit f7f611602078d2c7e29b387569f2fda81eef3763
parent 930f9b0a7e91f83a031120431db48e74c42cb96a
1 passed 2 failed (3 total) View logs
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