Skip to content
This repository was archived by the owner on Aug 19, 2020. It is now read-only.

Let Project scripts be cached in the Gradle build cache #978

Merged
merged 11 commits into from
Jul 20, 2018
Prev Previous commit
Next Next commit
Reduce visibility of internal member to private
  • Loading branch information
bamboo committed Jul 20, 2018
commit 68ac630f904c4a74975f1b3d22892755b5825fa8
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fun zipTo(zipFile: File, baseDir: File, files: Sequence<File>) {
}


internal
private
fun fileEntriesRelativeTo(baseDir: File, files: Sequence<File>): Sequence<Pair<String, ByteArray>> =
files.filter { it.isFile }.map { file ->
val path = file.normalisedPathRelativeTo(baseDir)
Expand Down