diff --git a/crates/collab/src/env.rs b/crates/collab/src/env.rs index bdbb4819fb..7335e26d6d 100644 --- a/crates/collab/src/env.rs +++ b/crates/collab/src/env.rs @@ -32,6 +32,7 @@ fn add_vars(env_content: String, vars: &mut Vec<(String, String)>) -> Result<()> toml::Value::String(value) => value, toml::Value::Integer(value) => value.to_string(), toml::Value::Float(value) => value.to_string(), + toml::Value::Boolean(value) => value.to_string(), _ => panic!("unsupported TOML value in .env.toml for key {}", key), }; vars.push((key, value));