Skip to content

Commit

Permalink
fix: add line break when updating banner
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS committed Jan 14, 2025
1 parent 4bd6820 commit 5d22cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/security_blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export default class SecurityBlog extends SecurityRelease {
link: content.link ?? currentValue.link,
type: content.type ?? currentValue.type
};
fs.writeFileSync(siteJsonPath, JSON.stringify(siteJson, null, 2));
fs.writeFileSync(siteJsonPath, JSON.stringify(siteJson, null, 2) + '\n');
}

formatReleaseDate(releaseDate) {
Expand Down

0 comments on commit 5d22cfa

Please sign in to comment.