diff options
author | Andrei Vagin <avagin@google.com> | 2021-09-13 15:31:52 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-13 15:35:22 -0700 |
commit | 95fe4fea19f30281a3ff53f62c9fcda533c4e04a (patch) | |
tree | 3f2f1f5a70dc4d48d0a6190b97d6810479785cfb /tools/show_paths.bzl | |
parent | e07fd058ec474d801748a849d9c5d1c6118c3c11 (diff) |
tools/show_paths.bzl: check that provider_map isn't None
Otherwise it can fail:
$ bazel cquery pkg/p9/... --output=starlark --starlark:file=tools/show_paths.bzl
...
ERROR: Starlark evaluation error for //pkg/p9/p9test:mockgen:
Traceback (most recent call last):
File "tools/show_paths.bzl", line 8, column 32, in format
Error: 'NoneType' value has no field or method 'get'
PiperOrigin-RevId: 396457764
Diffstat (limited to 'tools/show_paths.bzl')
-rw-r--r-- | tools/show_paths.bzl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/show_paths.bzl b/tools/show_paths.bzl index ba78d3494..f0126ac7b 100644 --- a/tools/show_paths.bzl +++ b/tools/show_paths.bzl @@ -2,6 +2,8 @@ def format(target): provider_map = providers(target) + if not provider_map: + return "" outputs = dict() # Try to resolve in order. |