From ca45bcce86570df76639a404a04335cdb089f33d Mon Sep 17 00:00:00 2001 From: Kevin Schaul Date: Thu, 29 Aug 2024 14:11:14 -0500 Subject: [PATCH] Fix release-notes.js (#926) Was missing trailing `, causing [this failure](https://github.com/maplibre/maputnik/actions/runs/10619718712/job/29437920164) --- build/release-notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release-notes.js b/build/release-notes.js index 1d169954..8e2e372a 100755 --- a/build/release-notes.js +++ b/build/release-notes.js @@ -42,7 +42,7 @@ if (previous) { } const templatedReleaseNotes = `${header} -${latest.changelog} +${latest.changelog}`; // eslint-disable-next-line eol-last process.stdout.write(templatedReleaseNotes.trimEnd());