diff --git a/crates/zeta_cli/src/example.rs b/crates/zeta_cli/src/example.rs index 13825cdea2ddce18488a9bfe6d515a7f89c47740..a015c75474eb73557d24032b8f67261e44308f27 100644 --- a/crates/zeta_cli/src/example.rs +++ b/crates/zeta_cli/src/example.rs @@ -167,7 +167,7 @@ impl NamedExample { let key = text[..eq_pos].trim(); let value = text[eq_pos + 1..].trim(); match key { - "repository_url" => repository_url = dbg!(value.to_string()), + "repository_url" => repository_url = value.to_string(), "commit" => commit = value.to_string(), _ => {} }