diff --git a/buildSrc/src/main/kotlin/BootstrapTask.kt b/buildSrc/src/main/kotlin/BootstrapTask.kt index a0d1229ecc..dfc60a28ff 100644 --- a/buildSrc/src/main/kotlin/BootstrapTask.kt +++ b/buildSrc/src/main/kotlin/BootstrapTask.kt @@ -276,6 +276,12 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT val bootstrapDir = File("${project.buildDir}/bootstrap") bootstrapDir.mkdirs() + if (type == "stable") { + File(bootstrapDir, "bootstrap-openosrs.json").printWriter().use { out -> + out.println(prettyJson) + } + } + File(bootstrapDir, "bootstrap-${type}.json").printWriter().use { out -> out.println(prettyJson) }