From 148501af818352eeadc567a20d863695dcc292f1 Mon Sep 17 00:00:00 2001 From: Owain van Brakel Date: Fri, 13 May 2022 03:28:06 +0200 Subject: [PATCH] project(boostrap): Push stable to staging (don't ask please...) --- buildSrc/src/main/kotlin/BootstrapTask.kt | 4 ++++ 1 file changed, 4 insertions(+) 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 ->