Elevated Sandbox 3 (#7809)

dedicated sandbox command runner exe.
This commit is contained in:
iceweasel-oai
2025-12-11 13:51:27 -08:00
committed by GitHub
parent c4f3f566a5
commit 3e81ed4b91
4 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#[path = "../command_runner_win.rs"]
mod win;
#[cfg(target_os = "windows")]
fn main() -> anyhow::Result<()> {
win::main()
}
#[cfg(not(target_os = "windows"))]
fn main() {
panic!("codex-command-runner is Windows-only");
}