This commit is contained in:
Chenjie Shi 2024-11-13 11:24:48 +08:00 коммит произвёл GitHub
Родитель 353cd4e149
Коммит f9b03ff28f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -243,7 +243,7 @@ func ExecuteTspClient(path string, args ...string) error {
// filter diagnostic errors // filter diagnostic errors
if len(newErrMsgs) >= 1 && if len(newErrMsgs) >= 1 &&
newErrMsgs[0] == "Diagnostics were reported during compilation. Use the `--debug` flag to see if there is warning diagnostic output." { strings.HasPrefix(newErrMsgs[0], "Diagnostics were reported during compilation.") {
newErrMsgs = newErrMsgs[1:] newErrMsgs = newErrMsgs[1:]
errDiags := getErrorDiagnostics(strings.Split(stdoutBuffer.String(), "\n")) errDiags := getErrorDiagnostics(strings.Split(stdoutBuffer.String(), "\n"))