1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Tools: fix git-changelog

This commit is contained in:
Laurent Cozic 2020-11-11 12:40:43 +00:00
parent 6f11487dba
commit ad654e30d5

View File

@ -23,6 +23,8 @@ async function gitLog(sinceTag) {
const output = [];
for (const line of lines) {
if (!line.trim()) continue;
const splitted = line.split('::::DIV::::');
const commit = splitted[0];
const authorEmail = splitted[1];