diff --git a/proto/clang_format.bzl b/proto/clang_format.bzl index 2ea62cd44..ba190099c 100644 --- a/proto/clang_format.bzl +++ b/proto/clang_format.bzl @@ -26,7 +26,7 @@ alias( _setup_clang_format = repository_rule( attrs = {}, - local = True, + local = False, implementation = _impl, ) diff --git a/proto/protobuf.bzl b/proto/protobuf.bzl index b0391cd0d..83c6c4056 100644 --- a/proto/protobuf.bzl +++ b/proto/protobuf.bzl @@ -24,7 +24,7 @@ alias( _setup_protoc = repository_rule( implementation = _impl, - local = True, + local = False, attrs = {}, ) diff --git a/python/python.bzl b/python/python.bzl index c1cb2b2d2..97ba73793 100644 --- a/python/python.bzl +++ b/python/python.bzl @@ -99,6 +99,6 @@ exports_files(["python"]) setup_local_python = repository_rule( implementation = _impl, - local = True, + local = False, attrs = {}, )