Merge pull request #1 from wagyourtail/patch-1

fix manifest removing last entry
This commit is contained in:
2023-11-08 19:22:47 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

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().trim() + "\n", StandardCharsets.UTF_8);
}
}
}