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
This commit is contained in:
David Ostrovsky
2019-10-10 03:47:27 +02:00
committed by David Pursehouse
parent 5626cd6777
commit adb2f7505b

View File

@@ -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