mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
16 lines
361 B
Rust
16 lines
361 B
Rust
#![warn(argument_comment_mismatch)]
|
|
#![warn(uncommented_anonymous_literal_argument)]
|
|
|
|
fn run_git_for_stdout(repo_root: &str, args: Vec<&str>, env: Option<&str>) -> String {
|
|
let _ = (repo_root, args, env);
|
|
String::new()
|
|
}
|
|
|
|
fn main() {
|
|
let _ = run_git_for_stdout(
|
|
"/tmp/repo",
|
|
vec!["rev-parse", "HEAD"],
|
|
/*env*/ None,
|
|
);
|
|
}
|