1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-25 07:57:12 -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 {
companion object {
val MANIFEST_MF = "/META-INF/MANIFEST.MF"
val MANIFEST_MF = "META-INF/MANIFEST.MF"
}
private val zos = ZipArchiveOutputStream(outputFile).apply {