How can users get bazel-run.sh?

bazel run usually occupies the Bazel server, blocking other commands.

https://github.com/bazelbuild/bazel/blob/c484f19a2cf7427887d6e4c71c8534806e1ba83e/scripts/bazel-run.sh - a fantastic replacement

Question: what is a good way for end users to get hold of this shell script and add to their path? Can we do this part of the bazel installation?

I tried ls -R $(bazel info install_base) | grep bazel-run ls -R $(bazel info install_base) | grep bazel-run but no luck.

+5
source share
1 answer

Bazel run is a good replacement for the end user to run the Bazel command if you need to run interactively or multiple commands ( # 2337 ). We did not need to consider it as an installation script.

Please write to Github's question to discuss the possibility of installing it with Bazel.

+2
source

Source: https://habr.com/ru/post/1273088/


All Articles