aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ulfjack <ulfjack@google.com>2017-04-19 13:56:34 +0200
committerGravatar Klaus Aehlig <aehlig@google.com>2017-04-20 11:02:44 +0200
commitfdba19031961506e2481de1895894ec0b43e4faf (patch)
treea4fe7a4f99da72f34ccaab9c9bd23333f7cb7994
parent3d17debd914bdea796068aac48a090d11ad400b3 (diff)
Refer to the proper filegroup, not to a directory
Without this change, //src/test/shell/bazel:bazel_toolchain_test is failing when remote caching is enabled. Workaround for #2845. PiperOrigin-RevId: 153574893
-rw-r--r--src/test/shell/bazel/testdata/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/shell/bazel/testdata/BUILD b/src/test/shell/bazel/testdata/BUILD
index da7f79038c..bd2a6fc560 100644
--- a/src/test/shell/bazel/testdata/BUILD
+++ b/src/test/shell/bazel/testdata/BUILD
@@ -21,7 +21,7 @@ filegroup(
name = "bazel_toolchain_test_project_pkg",
testonly = 1,
srcs = [
- "bazel_toolchain_test_data",
+ "//src/test/shell/bazel/testdata/bazel_toolchain_test_data:srcs",
],
visibility = ["//src/test/shell/bazel:__pkg__"],
)