mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Fix BuildSources.
This commit is contained in:
parent
f9d647f947
commit
6694426eef
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ interface IBuildSources {
|
|||
class SingleFileBuildSources(val file: File) : IBuildSources {
|
||||
override fun exists() = file.exists()
|
||||
override fun findSourceFiles() = listOf(file)
|
||||
override val root: File = file.parentFile.parentFile
|
||||
override val root: File = file.parentFile.parentFile.parentFile
|
||||
}
|
||||
|
||||
class BuildSources(val file: File = File("")) : IBuildSources {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue