From e09bd5331ff276e0041d554de4777f734468c9a3 Mon Sep 17 00:00:00 2001 From: Tyler Bochard Date: Mon, 15 Feb 2021 00:28:39 -0500 Subject: [PATCH] bootstrap: revert new bootstrap scheme This will prevent a bit of work having to be done for the buildbot. --- buildSrc/src/main/kotlin/BootstrapPlugin.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/BootstrapPlugin.kt b/buildSrc/src/main/kotlin/BootstrapPlugin.kt index 4a3824dd19..445959fe45 100644 --- a/buildSrc/src/main/kotlin/BootstrapPlugin.kt +++ b/buildSrc/src/main/kotlin/BootstrapPlugin.kt @@ -17,8 +17,9 @@ class BootstrapPlugin : Plugin { bootstrapDependencies(project(":runelite-client")) } - tasks.register("bootstrap", "openosrs") tasks.register("bootstrapStaging", "staging") + tasks.register("bootstrapNightly", "nightly") + tasks.register("bootstrapStable", "stable") tasks.withType { this.group = "openosrs"