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.
2 parents 75fcaee + 6bcab00 commit c7f4f9cCopy full SHA for c7f4f9c
src/main/java/com/bazel_diff/BazelClient.java
@@ -68,7 +68,7 @@ public Set<BazelSourceFileTarget> convertFilepathsToSourceTargets(Set<Path> file
68
for (List<Path> partition : Iterables.partition(filepaths, 100)) {
69
String targetQuery = partition
70
.stream()
71
- .map(path -> path.toString())
+ .map(path -> String.format("'%s'", path.toString()))
72
.collect(Collectors.joining(" + "));
73
List<Build.Target> targets = performBazelQuery(targetQuery);
74
for (Build.Target target : targets) {
0 commit comments