fix bazel build (#13787)

I believe this broke in https://github.com/openai/codex/pull/13772.
This commit is contained in:
Michael Bolin
2026-03-06 12:12:20 -08:00
committed by GitHub
Unverified
parent 488875f24d
commit 7a5aff4972
+1 -1
View File
@@ -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/**"]),
)