From 0723245085c13be9ab580149379ffa3da809051b Mon Sep 17 00:00:00 2001 From: mustiikhalil <26250654+mustiikhalil@users.noreply.github.com> Date: Sun, 21 Dec 2025 22:22:49 +0100 Subject: [PATCH] [Swift] Fixes bazel.build file allowing it to find Vectors folder in 8.5.0 (#8875) --- swift/BUILD.bazel | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/swift/BUILD.bazel b/swift/BUILD.bazel index c777daf75..df370c931 100644 --- a/swift/BUILD.bazel +++ b/swift/BUILD.bazel @@ -14,7 +14,8 @@ swift_library( name = "swift", srcs = glob([ "Sources/FlatBuffers/*.swift", - "Sources/Common/*.swift", + "Sources/FlatBuffers/Vectors/*.swift", + "Sources/Common/*.swift" ]), module_name = "FlatBuffers", visibility = ["//visibility:public"],