1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-10-28 10:38:39 -05:00

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
Push-Location "$ProjectRoot\..\winfsp.sym"
$SymHasTag = Git-LogGrep $ReleaseInfo.Tag
$SymHasTag = Git-LogGrep "^$($ReleaseInfo.Tag)$"
Pop-Location
if ($SymHasTag) {
Write-Stderr "warning: winfsp.sym repository already has commit for tag $($ReleaseInfo.Tag)"