Skip to content

Commit 9b168f3

Browse files
committed
Fix for later
1 parent f29b280 commit 9b168f3

File tree

1 file changed

+1
-1
lines changed
  • loader/src/main/java/com/fox2code/foxloader/installer

1 file changed

+1
-1
lines changed

loader/src/main/java/com/fox2code/foxloader/installer/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static void main(String[] args) throws Throwable {
5656
InstallerGUI installerGUI = new InstallerGUI(InstallerPlatform.DEFAULT, LauncherType.MMC_LIKE);
5757
if (installerName.startsWith("loader-") && !installerName.endsWith("-installer.jar")) {
5858
File newName = new File("fox" + installerName.substring(
59-
0, installerName.length() - 3) + "-installer.jar");
59+
0, installerName.length() - 4) + "-installer.jar");
6060
if (!newName.exists()) {
6161
Files.copy(currentInstallerFile.toPath(), newName.toPath());
6262
}

0 commit comments

Comments
 (0)