aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/aspects.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/site/docs/skylark/aspects.md b/site/docs/skylark/aspects.md
index 19f45f8e2c..8f0d707e10 100644
--- a/site/docs/skylark/aspects.md
+++ b/site/docs/skylark/aspects.md
@@ -279,7 +279,8 @@ demonstrates how you could pass in a tool to a aspect:
attrs = {
'_protoc' : attr.label(
default = Label('//tools:protoc'),
- executable = True
+ executable = True,
+ cfg = "host"
)
}
...