We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29b280 commit 9b168f3Copy full SHA for 9b168f3
loader/src/main/java/com/fox2code/foxloader/installer/Main.java
@@ -56,7 +56,7 @@ public static void main(String[] args) throws Throwable {
56
InstallerGUI installerGUI = new InstallerGUI(InstallerPlatform.DEFAULT, LauncherType.MMC_LIKE);
57
if (installerName.startsWith("loader-") && !installerName.endsWith("-installer.jar")) {
58
File newName = new File("fox" + installerName.substring(
59
- 0, installerName.length() - 3) + "-installer.jar");
+ 0, installerName.length() - 4) + "-installer.jar");
60
if (!newName.exists()) {
61
Files.copy(currentInstallerFile.toPath(), newName.toPath());
62
}
0 commit comments