getRecentCommitMessages: return empty array if no commits (#222)

This commit is contained in:
Elizabeth Craig 2022-11-16 17:22:11 -08:00 коммит произвёл GitHub
Родитель 8ee82550b2
Коммит 58266b0384
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "getRecentCommitMessages: return empty array if no commits",
"packageName": "workspace-tools",
"email": "elcraig@microsoft.com",
"dependentChangeType": "patch"
}

Просмотреть файл

@ -93,7 +93,10 @@ export function getRecentCommitMessages(branch: string, cwd: string) {
return [];
}
return results.stdout.split(/\n/).map((line) => line.trim());
return results.stdout
.trim()
.split(/\n/)
.map((line) => line.trim());
} catch (e) {
throw new GitError(`Cannot gather information about recent commits`, e);
}