Skip to content

Commit

Permalink
bazel: stop using 'native' in BUILD files
Browse files Browse the repository at this point in the history
An upgrade to upstream bazel exposed an error in one of our BUILD
files:
 - bazelbuild/bazel#7513
  • Loading branch information
cryslith authored and celskeggs committed Sep 4, 2019
1 parent dc163f9 commit b6e9487
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions platform/bazel/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
native.py_binary(
py_binary(
name = "substitute",
srcs = ["substitute.py"],
visibility = ["//visibility:public"],
)

native.py_binary(
py_binary(
name = "version-compute",
srcs = ["version-compute.py"],
visibility = ["//visibility:public"],
)

native.py_binary(
py_binary(
name = "hash-compute",
srcs = ["hash-compute.py"],
visibility = ["//visibility:public"],
)

native.py_binary(
py_binary(
name = "cache-compute",
srcs = ["cache-compute.py"],
visibility = ["//visibility:public"],
Expand Down

0 comments on commit b6e9487

Please sign in to comment.