We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c9505 commit 65a68b0Copy full SHA for 65a68b0
cli/src/main/kotlin/com/bazel_diff/bazel/BazelQueryService.kt
@@ -106,6 +106,9 @@ class BazelQueryService(
106
if providers(target) == None:
107
return ""
108
if "IncompatiblePlatformProvider" not in providers(target):
109
+ target_repr = repr(target)
110
+ if "<alias target" in target_repr:
111
+ return target_repr.split(" ")[2]
112
return str(target.label)
113
114
"""
0 commit comments