Fix error message in CodeCheck file (#50375)

* Fix error message in CodeCheck file

* Update CodeCheck.ps1

* Update CodeCheck.ps1
This commit is contained in:
William Godbe 2023-08-29 08:41:43 -07:00 коммит произвёл GitHub
Родитель bde033e9cd
Коммит e4b318b1f0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -253,7 +253,7 @@ try {
}
}
# Check for changes in Unshipped in servicing branches
if ($targetBranch -like 'release*' -and $targetBranch -notlike '*preview*' -and $file -like '*PublicAPI.Unshipped.txt') {
if ($targetBranch -like 'release*' -and $targetBranch -notlike '*preview*' -and $targetBranch -notlike '*rc1*' -and $targetBranch -notlike '*rc2*' -and $file -like '*PublicAPI.Unshipped.txt') {
$changedAPIBaselines.Add($file)
}
}
@ -263,7 +263,8 @@ try {
if ($changedAPIBaselines.count -gt 0) {
LogError ("Detected modification to baseline API files. PublicAPI.Shipped.txt files should only " +
"be updated after a major release. See /docs/APIBaselines.md for more information.")
"be updated after a major release, and PublicAPI.Unshipped.txt files should not " +
"be updated in release branches. See /docs/APIBaselines.md for more information.")
LogError "Modified API baseline files:"
foreach ($file in $changedAPIBaselines) {
LogError $file