recompile pt1

This commit is contained in:
Fangoboyo 2022-06-08 19:15:51 -07:00
parent 66630da1ac
commit fa7c9d9018
2 changed files with 8 additions and 11 deletions

View File

@ -32,8 +32,6 @@ public class Installer {
public static void InstallUpdater() throws IOException {
File file = new File(Main.getInstance().getDataFolder().getParent() + "/EaglerPluginUpdater.jar");
System.out.println("Check 1 passed");
if (!(file.exists())) {
System.out.println("Check 2 passed");
try {
InputStream in = URI.create("https://github.com/darverdevs/EaglerPluginUpdater/raw/main/out/artifacts/EaglerPluginUpdater_jar/EaglerPluginUpdater.jar")
.toURL().openStream();
@ -45,4 +43,3 @@ public class Installer {
}
}
}
}