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.
--useCquery
1 parent 3098e27 commit e226c1cCopy full SHA for e226c1c
cli/src/main/kotlin/com/bazel_diff/bazel/BazelQueryService.kt
@@ -75,7 +75,10 @@ class BazelQueryService(
75
addAll(startupOptions)
76
if (useCquery) {
77
add("cquery")
78
- add("--transitions=lite")
+ if (!outputCompatibleTargets) {
79
+ // There is no need to query the transitions when querying for compatible targets.
80
+ add("--transitions=lite")
81
+ }
82
} else {
83
add("query")
84
}
0 commit comments