From adb2f7505b02241bcf4c858980b6be29febb2768 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Thu, 10 Oct 2019 03:47:27 +0200 Subject: [PATCH] Bazel: Fix building from non-root workspace directory Support for Remote Bazel Execution was added in this change: Ia18e5fd55f8. However, the import statement in .bazelrc: import tools/remote-bazelrc missed to prefix the tools directory with %workspace% prefix and thus broke running the build from non root-workspace directory. Change-Id: I85673659138e23d25eaecf40606d57706fe9f6e1 --- .bazelrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 433a190c08..fef1fa364f 100644 --- a/.bazelrc +++ b/.bazelrc @@ -14,4 +14,4 @@ build --incompatible_strict_action_env test --build_tests_only test --test_output=errors -import tools/remote-bazelrc +import %workspace%/tools/remote-bazelrc