(Depending on exactly what flags are set in .bazelrc)
Only the workspace and output_base fields are actually needed from bazel info. The fields that causes the issue are output_path and execution_root, so we can just do bazel info workspace and bazel info output_base instead. See this thread for more information.
(Depending on exactly what flags are set in
.bazelrc
)Only the
workspace
andoutput_base
fields are actually needed frombazel info
. The fields that causes the issue areoutput_path
andexecution_root
, so we can just dobazel info workspace
andbazel info output_base
instead. See this thread for more information.