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
parent 488875f24d
commit 7a5aff4972
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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/**"]),
)