1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-03 23:50:33 +02:00

Update buildTools (major) (#8266)

Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2023-06-06 10:55:02 +01:00
committed by GitHub
parent 6c15940005
commit 19992ffcf9
16 changed files with 101 additions and 68 deletions

View File

@ -23,7 +23,7 @@ export interface GitHubRelease {
async function insertChangelog(tag: string, changelogPath: string, changelog: string, isPrerelease: boolean, repoTagUrl: string = '') {
repoTagUrl = repoTagUrl || 'https://github.com/laurent22/joplin/releases/tag';
const currentText = await readFile(changelogPath, 'UTF-8');
const currentText = await readFile(changelogPath, 'utf8');
const lines = currentText.split('\n');
const beforeLines = [];