mirror of
https://github.com/openai/codex.git
synced 2026-04-30 01:16:54 +00:00
I believe this use of `expect()` was introduced in https://github.com/openai/codex/pull/17826, but was not flagged by CI. Though I did see it in the diagnostics panel in VS Code, so it's worth cleaning up. I guess our current CI does include `examples/` when running Clippy?
20 lines
543 B
Rust
20 lines
543 B
Rust
use std::path::PathBuf;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
let Some(proto_dir_arg) = std::env::args().nth(1) else {
|
|
eprintln!("Usage: generate-proto <proto-dir>");
|
|
std::process::exit(1);
|
|
};
|
|
|
|
let proto_dir = PathBuf::from(proto_dir_arg);
|
|
let proto_file = proto_dir.join("codex.thread_store.v1.proto");
|
|
|
|
tonic_prost_build::configure()
|
|
.build_client(true)
|
|
.build_server(true)
|
|
.out_dir(&proto_dir)
|
|
.compile_protos(&[proto_file], &[proto_dir])?;
|
|
|
|
Ok(())
|
|
}
|