aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/packages/BUILD
diff options
context:
space:
mode:
authorGravatar Yue Gan <yueg@google.com>2016-05-23 13:58:33 +0000
committerGravatar Yue Gan <yueg@google.com>2016-05-23 15:27:30 +0000
commit23c274dcd0174a9bf0f62f028ab62084e9ea440f (patch)
tree2a751cedaf30aad0ced87ce519e93aaf44da96a7 /scripts/packages/BUILD
parentd186b17b9fa50f9be18ccb2a6a12983e28b958d7 (diff)
*** Reason for rollback *** Broke bazel installation on ci.bazel.io, see http://ci.bazel.io/view/Bazel%20bootstrap%20and%20maintenance/job/Bazel-Install/578/console This change should make --bazelrc a non-op first to remove it. *** Original change description *** Remove .bazelrc This hasn't been used in several releases. -- MOS_MIGRATED_REVID=122993255
Diffstat (limited to 'scripts/packages/BUILD')
-rw-r--r--scripts/packages/BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index 38fc2f3b15..e2f5efef92 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -65,6 +65,14 @@ pkg_tar(
strip_prefix = ".",
)
+pkg_tar(
+ name = "bazel-rc",
+ files = ["debian/bazel.bazelrc"],
+ mode = "0644",
+ package_dir = "/etc",
+ strip_prefix = "debian",
+)
+
genrule(
name = "rename-bazel-completion",
srcs = ["//scripts:bash_completion"],
@@ -85,6 +93,7 @@ pkg_tar(
deps = [
":bazel-bin",
":bazel-completion",
+ ":bazel-rc",
],
)