1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-01 19:15:01 +02:00

Tools: Fixed git-changelog for server

This commit is contained in:
Laurent Cozic 2021-01-04 22:33:36 +00:00
parent 5c283e4508
commit 2b33df2955

View File

@ -56,6 +56,7 @@ function platformFromTag(tagName) {
if (tagName.indexOf('ios') >= 0) return 'ios';
if (tagName.indexOf('clipper') === 0) return 'clipper';
if (tagName.indexOf('cli') === 0) return 'cli';
if (tagName.indexOf('server') === 0) return 'server';
if (tagName.indexOf('plugin-generator') === 0) return 'plugin-generator';
throw new Error(`Could not determine platform from tag: "${tagName}"`);
}