Roman Kiselevich

Results 2 comments of Roman Kiselevich

This workaround helped for our composite build project ```kotlin fun findGitDirectory(startDir: File): File? { var currentDir: File? = startDir while (currentDir != null && !File(currentDir, ".git").exists()) { currentDir = currentDir.parentFile...

@tha2015 didn't work for our project after upgrading to 2.5.2. This workaround still helps https://github.com/n0mer/gradle-git-properties/issues/240#issuecomment-2710689037