diff --git a/radicle-cli/src/commands/debug.rs b/radicle-cli/src/commands/debug.rs index aaad9386..1147249b 100644 --- a/radicle-cli/src/commands/debug.rs +++ b/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, "".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