From 6fb7b1fc4390b0b5ac4ac8b3364f2dc2a1b0a79c Mon Sep 17 00:00:00 2001 From: PKLite Date: Thu, 1 Aug 2019 12:54:29 -0400 Subject: [PATCH] fix 2 Signed-off-by: PKLite --- live/bootstrap.json | 2 +- .../main/java/net/runelite/client/util/bootstrap/Bootstrap.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/live/bootstrap.json b/live/bootstrap.json index c8058abb7d..8eae1607f6 100644 --- a/live/bootstrap.json +++ b/live/bootstrap.json @@ -324,7 +324,7 @@ "hash": "3a902785766620dffeeb26e248ce75b265e058520105973f9cbe0a2161739433", "name": "injected-client-1.5.31-SNAPSHOT.jar", "path": "https://raw.githubusercontent.com/runelite-extended/maven-repo/master/live/injected-client-1.5.31-SNAPSHOT.jar", - "size": "0" + "size": "2258274" } ] } \ No newline at end of file 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 93bb91538a..3400cefea6 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 @@ -355,7 +355,7 @@ public class Bootstrap artifacts[47].name = "injected-client-" + projectVersion + ".jar"; artifacts[47].hash = getChecksumFile("./injected-client/build/libs/" + artifacts[47].name); artifacts[47].path = "https://raw.githubusercontent.com/runelite-extended/maven-repo/master/" + Bootstrapper.remoteLocation + artifacts[47].name; - artifacts[47].size = Long.toString(getFileSize("./http-api/build/libs/" + artifacts[47].name)); + artifacts[47].size = Long.toString(getFileSize("./injected-client/build/libs/" + artifacts[47].name)); copyTodir("./injected-client/build/libs/" + artifacts[47].name, Bootstrapper.localLocation); } catch (IOException | NoSuchAlgorithmException e)