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

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 {