tools: make-release.ps1: match release tag exactly

This commit is contained in:
Bill Zissimopoulos 2023-03-16 11:30:03 +00:00
parent 5c03dd11ee
commit 9accf72d39

View File

@ -543,7 +543,7 @@ function Upload-Symbols {
# check winfsp.sym git log # check winfsp.sym git log
Push-Location "$ProjectRoot\..\winfsp.sym" Push-Location "$ProjectRoot\..\winfsp.sym"
$SymHasTag = Git-LogGrep $ReleaseInfo.Tag $SymHasTag = Git-LogGrep "^$($ReleaseInfo.Tag)$"
Pop-Location Pop-Location
if ($SymHasTag) { if ($SymHasTag) {
Write-Stderr "warning: winfsp.sym repository already has commit for tag $($ReleaseInfo.Tag)" Write-Stderr "warning: winfsp.sym repository already has commit for tag $($ReleaseInfo.Tag)"