Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixes extraction of repository files ALA-1387 #519

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import org.eclipse.jgit.lib.{Repository, RepositoryBuilder}
import org.eclipse.jgit.revwalk.RevWalk
import org.eclipse.jgit.treewalk.TreeWalk

import scala.jdk.CollectionConverters._
import scala.collection.mutable.ListBuffer
import scala.jdk.CollectionConverters.*
import scala.util.Try

case class CommitInfo(uuid: String, authorName: String, authorEmail: String, date: Date)
Expand Down Expand Up @@ -51,14 +52,12 @@ class GitClient(workDirectory: File) {
treeWalk.addTree(tree)
treeWalk.setRecursive(true)

val result: Seq[String] =
if (treeWalk.next) {
LazyList
.continually(treeWalk.getPathString)
.takeWhile(_ => treeWalk.next)
} else Seq.empty
val buffer = new ListBuffer[String]

result
while (treeWalk.next) {
buffer.addOne(treeWalk.getPathString)
}
buffer.toList
}
}

Expand Down