diff --git a/buildSrc/src/main/kotlin/BootstrapTask.kt b/buildSrc/src/main/kotlin/BootstrapTask.kt index dfc60a28ff..590d5afafa 100644 --- a/buildSrc/src/main/kotlin/BootstrapTask.kt +++ b/buildSrc/src/main/kotlin/BootstrapTask.kt @@ -280,6 +280,10 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT File(bootstrapDir, "bootstrap-openosrs.json").printWriter().use { out -> out.println(prettyJson) } + + File(bootstrapDir, "bootstrap-staging.json").printWriter().use { out -> + out.println(prettyJson) + } } File(bootstrapDir, "bootstrap-${type}.json").printWriter().use { out ->