summaryrefslogtreecommitdiff
path: root/repository_defs.bzl
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-05-14 15:04:30 -0700
committerJoshua Haberman <jhaberman@gmail.com>2019-05-14 15:04:30 -0700
commit1cf4af7b2c3ef7d4795aed2bda936e8e5c43fd02 (patch)
treee18272080901e77b1023e8fb905834a8c0e1a460 /repository_defs.bzl
parent5e5e0cf24aa630d5ee1deb1ebf1032b7b788d9b8 (diff)
A (final?) round of Blaze fixes.
Diffstat (limited to 'repository_defs.bzl')
-rw-r--r--repository_defs.bzl5
1 files changed, 2 insertions, 3 deletions
diff --git a/repository_defs.bzl b/repository_defs.bzl
index 5bbc9cb..7b6e78e 100644
--- a/repository_defs.bzl
+++ b/repository_defs.bzl
@@ -1,4 +1,3 @@
-
# A hacky way to work around the fact that native.bazel_version is only
# available from WORKSPACE macros, not BUILD macros or rules.
#
@@ -11,6 +10,6 @@ def _impl(repository_ctx):
repository_ctx.file("BUILD", "")
bazel_version_repository = repository_rule(
- implementation=_impl,
- local=True,
+ implementation = _impl,
+ local = True,
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback