mirror of
https://gitlab.bixilon.de/bixilon/minosoft-meta.git
synced 2025-09-10 05:07:42 -04:00
fix wrong package folder
This commit is contained in:
parent
62585a9df5
commit
a1ca0c0269
@ -50,14 +50,14 @@ object MinosoftMetaTranspiler {
|
|||||||
exitProcess(1)
|
exitProcess(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.mbf.isEmpty()) throw IllegalStateException("Meta is empty!")
|
if (mbf.isEmpty()) throw IllegalStateException("Meta is empty!")
|
||||||
|
|
||||||
storeIndex(this.mbf, index)
|
storeIndex(mbf, index)
|
||||||
|
|
||||||
val end = nanos()
|
val end = nanos()
|
||||||
val delta = end - start
|
val delta = end - start
|
||||||
|
|
||||||
println("Done (${this.writes}/${this.total}) after ${delta.formatNanos()}!")
|
println("Done ($writes/$total) after ${delta.formatNanos()}!")
|
||||||
exitProcess(0)
|
exitProcess(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,7 +103,7 @@ object MinosoftMetaTranspiler {
|
|||||||
val entry = MetaVersionEntry(version, hash)
|
val entry = MetaVersionEntry(version, hash)
|
||||||
mbf.synchronizedGetOrPut(type) { Collections.synchronizedList(mutableListOf()) } += entry
|
mbf.synchronizedGetOrPut(type) { Collections.synchronizedList(mutableListOf()) } += entry
|
||||||
} catch (error: Throwable) {
|
} catch (error: Throwable) {
|
||||||
this.error += Error(version, type, error)
|
MinosoftMetaTranspiler.error += Error(version, type, error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user