1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Fix manifest path.

This commit is contained in:
Cedric Beust 2017-04-27 16:21:35 -07:00
parent 67da9b8dc6
commit 0e6bc67c4b

View file

@ -19,7 +19,7 @@ import org.apache.commons.compress.archivers.zip.ZipFile as ApacheZipFile
*/ */
class MetaArchive(outputFile: File, val manifest: Manifest?) : Closeable { class MetaArchive(outputFile: File, val manifest: Manifest?) : Closeable {
companion object { companion object {
val MANIFEST_MF = "/META-INF/MANIFEST.MF" val MANIFEST_MF = "META-INF/MANIFEST.MF"
} }
private val zos = ZipArchiveOutputStream(outputFile).apply { private val zos = ZipArchiveOutputStream(outputFile).apply {