Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: add PATH to env vars in rad-debug
Lars Wirzenius committed 2 years ago
commit 6569449fff99b251b2cea96cb76eaa0ea430c63e
parent 5fce714ba55892702069e6df36666baf14c751a3
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_") {
+
        } else if k.starts_with("RAD_") || k.starts_with("SSH_") || k == "PATH" {
            Some((k, v))
        } else {
            None