Skip to content

Commit a0c290c

Browse files
authored
Merge pull request #210 from olafurpg/no-progress
2 parents 6f7d1bf + 5fc40fe commit a0c290c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lsif-java/src/main/scala/com/sourcegraph/lsif_java/buildtools/MavenBuildTool.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ class MavenBuildTool(index: IndexCommand) extends BuildTool("Maven", index) {
4040
// issue for this repo.
4141
s"-Dmaven.compiler.compilerId=javac",
4242
s"-Dmaven.compiler.executable=$executable",
43-
s"-Dmaven.compiler.fork=true",
44-
s"--no-transfer-progress"
43+
s"-Dmaven.compiler.fork=true"
4544
)
4645
buildCommand ++=
4746
index.finalBuildCommand(

lsif-semanticdb/src/main/java/com/sourcegraph/lsif_semanticdb/LsifSemanticdb.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public static void run(LsifSemanticdbOptions options) throws IOException {
3434
private void run() throws IOException {
3535
PackageTable packages = new PackageTable(options, writer);
3636
List<Path> files = SemanticdbWalker.findSemanticdbFiles(options);
37+
Collections.sort(files);
3738
if (options.reporter.hasErrors()) return;
3839
if (files.isEmpty()) {
3940
options.reporter.error(

0 commit comments

Comments
 (0)