fix manifest removing last entry #1

Merged
wagyourtail merged 2 commits from patch-1 into master 2023-11-08 18:22:47 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 68b51af017 - Show all commits

View File

@@ -594,7 +594,7 @@ public class JarMergeAction {
} }
sb.append(line).append("\n"); sb.append(line).append("\n");
} }
FileUtils.write(file, sb.toString(), StandardCharsets.UTF_8); FileUtils.write(file, sb.toString().trim() + "\n", StandardCharsets.UTF_8);
} }
} }
} }