From fa25840b992a351e892eecb45d7d8c4253941518 Mon Sep 17 00:00:00 2001 From: John Cater Date: Mon, 6 Jul 2026 10:51:17 -0400 Subject: [PATCH] Add a `git_override` to the README directions. This is a workaround until IWYU is added to the BCR. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 250bf88..7b9de6d 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,13 @@ In your `MODULE.bazel` file, add: ```python bazel_dep(name = "bazel_iwyu", version = "") + +# Workaround until IWYU is uploaded to the BCR. +git_override( + module_name = "bazel_iwyu", + remote = "https://github.com/RealtimeRoboticsGroup/bazel_iwyu.git", + tag = "v", +) ``` ---