diff --git a/crates/util/src/shell_env.rs b/crates/util/src/shell_env.rs index 394d88594d..44f6a836a9 100644 --- a/crates/util/src/shell_env.rs +++ b/crates/util/src/shell_env.rs @@ -93,7 +93,7 @@ async fn capture_unix( // Parse the JSON output from zed --printenv let env_map: collections::HashMap = serde_json::from_str(&env_output) - .with_context(|| "Failed to deserialize environment variables from json")?; + .with_context(|| "Failed to deserialize environment variables from json: {env_output}")?; Ok(env_map) } @@ -257,5 +257,5 @@ async fn capture_windows( // Parse the JSON output from zed --printenv serde_json::from_str(&env_output) - .with_context(|| "Failed to deserialize environment variables from json") + .with_context(|| "Failed to deserialize environment variables from json: {env_output}") }