Fix file list of the nested directory.

This commit is contained in:
takezoe
2013-06-05 13:47:25 +09:00
parent 275f6f02f8
commit 54ca687995

View File

@@ -145,6 +145,8 @@ object JGitUtil {
if(path != "."){
treeWalk.setRecursive(true)
treeWalk.setFilter(PathFilter.create(path))
treeWalk.next()
treeWalk.setRecursive(false)
}
val list = new scala.collection.mutable.ListBuffer[FileInfo]