Closed KelvinLu closed 5 years ago
This addresses issue #6.
Bazel provides a Bash wrapper (scripts/packages/bazel.sh) as part of their source distribution.
scripts/packages/bazel.sh
This installs the script in the same place as the Bazel binary, renaming the latter to bazel-real as per the wrapper.
bazel-real
For reference, the Bazel Homebrew Formula does this for macOS.
def install # ... cd "sources" do # ... bin.install "scripts/packages/bazel.sh" => "bazel" (libexec/"bin").install "output/bazel" => "bazel-real" # ...
oh interesting. Sorry I've missed this. Let me take a look.
in master with 36e6b89, and tagging for build as v0.27.0-6
This addresses issue #6.
Bazel provides a Bash wrapper (
scripts/packages/bazel.sh
) as part of their source distribution.This installs the script in the same place as the Bazel binary, renaming the latter to
bazel-real
as per the wrapper.For reference, the Bazel Homebrew Formula does this for macOS.