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 aa71ec2726 - Show all commits

View File

@@ -1,2 +1,2 @@
version_base=1.0
version_patch=8
version_patch=9

View File

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