chore: fix typo in build script's if statement (#3017)

missing 'i' in 'if' statement
This commit is contained in:
jg0312 2024-02-29 23:55:25 +08:00 committed by GitHub
parent dfa78cac49
commit 621a8d4e20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,7 @@ if (!$?) {
Write-Host "Frontend built!" -f green
}
f (!$?) {
if (!$?) {
Write-Host -BackgroundColor red -ForegroundColor white "Could not generate buf types. See above."
Exit 1
} else {