mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
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:
parent
9151fd93d4
commit
f8ae64043d
3 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ alias(
|
|||
|
||||
_setup_clang_format = repository_rule(
|
||||
attrs = {},
|
||||
local = True,
|
||||
local = False,
|
||||
implementation = _impl,
|
||||
)
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ alias(
|
|||
|
||||
_setup_protoc = repository_rule(
|
||||
implementation = _impl,
|
||||
local = True,
|
||||
local = False,
|
||||
attrs = {},
|
||||
)
|
||||
|
||||
|
|
|
@ -99,6 +99,6 @@ exports_files(["python"])
|
|||
|
||||
setup_local_python = repository_rule(
|
||||
implementation = _impl,
|
||||
local = True,
|
||||
local = False,
|
||||
attrs = {},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue