From 7a5aff4972e7fc2908bca5ff22a37e207851b473 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 6 Mar 2026 12:12:20 -0800 Subject: [PATCH] fix bazel build (#13787) I believe this broke in https://github.com/openai/codex/pull/13772. --- codex-rs/state/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/state/BUILD.bazel b/codex-rs/state/BUILD.bazel index b1f793216..e10ac17c9 100644 --- a/codex-rs/state/BUILD.bazel +++ b/codex-rs/state/BUILD.bazel @@ -3,5 +3,5 @@ load("//:defs.bzl", "codex_rust_crate") codex_rust_crate( name = "state", crate_name = "codex_state", - compile_data = glob(["migrations/**"]), + compile_data = glob(["logs_migrations/**", "migrations/**"]), )