From b9ae88d62d86069889daa55d18efcd6fa95e72c3 Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Wed, 12 Mar 2025 20:24:46 +0000 Subject: [PATCH] chore: bazelignore the cpp-jsonnet subdirectory Otherwise if the submodule is initialized Bazel will try to build it when running commands like bazel test //...:all. But that doesn't work because the cpp-jsonnet directory is not part of the same bazel module. Perhaps there is a better way to fix it but just ignoring the cpp-jsonnet directory seems to be ok. --- .bazelignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .bazelignore diff --git a/.bazelignore b/.bazelignore new file mode 100644 index 0000000..3a90431 --- /dev/null +++ b/.bazelignore @@ -0,0 +1 @@ +cpp-jsonnet