• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Description: BUILD file for shell script to install bazel using the installer.
2"""
3
4package(
5    default_visibility = ["//tensorflow:internal"],
6    licenses = ["notice"],  # Apache 2.0
7)
8
9sh_binary(
10    name = "install_bazel",
11    srcs = ["install_bazel.sh"],
12)
13
14sh_binary(
15    name = "install_bazel_from_source",
16    srcs = ["install_bazel_from_source.sh"],
17)
18