1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 20:13:13 +00:00

fixed last commit

This commit is contained in:
Master Kwoth 2017-06-10 15:14:00 +02:00
parent c2230ac5eb
commit da85372fae

View file

@ -9,7 +9,8 @@ function GitHub-Release($versionNumber)
$lastTag = git describe --tags --abbrev=0
$tag = "$lastTag..HEAD"
$clArr = [array]::Reverse((& 'git' 'log', $tag, '--oneline'))
$clArr = (& 'git' 'log', $tag, '--oneline')
$clArr = [array]::Reverse($clArr)
$changelog = $clArr | where { "$_" -notlike "*(POEditor.com)*" -and "$_" -notlike "*Merge branch*" -and "$_" -notlike "*Merge pull request*" -and "$_" -notlike "^-*" -and "$_" -notlike "*Merge remote tracking*" }
$changelog = [string]::join([Environment]::NewLine, $changelog)