build: fix changelog generation

This commit is contained in:
Michael Kriese 2024-09-25 10:49:06 +02:00
parent d749d7b554
commit 96ee8b8f19
No known key found for this signature in database
GPG key ID: F8D7748549A5986A
3 changed files with 5 additions and 2 deletions

View file

@ -5,4 +5,4 @@ const file = process.argv[3]
? fs.createWriteStream(process.argv[3])
: process.stdout;
getChangelog().pipe(file);
getChangelog(process.argv[2], !!process.argv[2]).pipe(file);