From 9bc8e6e5a6bf2ab2eb82cc5144e2f846a72c4693 Mon Sep 17 00:00:00 2001 From: Ganom Date: Thu, 1 Aug 2019 12:17:46 -0400 Subject: [PATCH] bootstrap: fix extra \ added. --- .../main/java/net/runelite/client/util/bootstrap/Bootstrap.java | 2 +- .../java/net/runelite/client/util/bootstrap/Bootstrapper.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrap.java b/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrap.java index 62fb948cfb..f26b23035b 100644 --- a/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrap.java +++ b/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrap.java @@ -14,7 +14,7 @@ import org.codehaus.plexus.util.FileUtils; public class Bootstrap { - private String projectVersion = "1.5.30-SNAPSHOT"; + private String projectVersion = "1.5.31-SNAPSHOT"; String buildCommit = "6fe334c02648d3f8b38625e3175e3f547d54aa37"; Client client = new Client(); String[] clientJvm9Arguments = new String[]{ diff --git a/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrapper.java b/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrapper.java index edce589251..770c377457 100644 --- a/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrapper.java +++ b/runelite-client/src/main/java/net/runelite/client/util/bootstrap/Bootstrapper.java @@ -32,7 +32,7 @@ public class Bootstrapper } else { - remoteLocation = "/live/"; + remoteLocation = "live/"; localLocation = "./live/"; Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting().create(); File dir = new File("./live/");