fix: springboot updater missing EOL (#2433)

Signed-off-by: Matej Vašek <matejvasek@gmail.com>
This commit is contained in:
Matej Vašek 2024-07-22 07:35:14 +02:00 committed by GitHub
parent aed23cf9a1
commit 362bdf64c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ const updatePlatformInPom = async (pomPath, newPlatform) => {
pom.project.properties[0]['spring-cloud.version'] = [compatibleSpringCloudVersion]
const builder = new xml2js.Builder( { headless: false, renderOpts: { pretty: true } })
const newPomData = builder.buildObject(pom)
const newPomData = builder.buildObject(pom) + "\n"
await writeFile(pomPath, newPomData)
}