set local=False for python/protoc/clang

Suspect this will fix these repos being unnecessarily restarted on
changes to the workspace.
This commit is contained in:
Damien Elmes 2021-11-01 11:36:44 +10:00
parent 9151fd93d4
commit f8ae64043d
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ alias(
_setup_clang_format = repository_rule(
attrs = {},
local = True,
local = False,
implementation = _impl,
)

View file

@ -24,7 +24,7 @@ alias(
_setup_protoc = repository_rule(
implementation = _impl,
local = True,
local = False,
attrs = {},
)

View file

@ -99,6 +99,6 @@ exports_files(["python"])
setup_local_python = repository_rule(
implementation = _impl,
local = True,
local = False,
attrs = {},
)