We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47b59df commit 4e3bfb5Copy full SHA for 4e3bfb5
1 file changed
src/build.ts
@@ -56,7 +56,7 @@ async function handleBuildFailure(operationId: string, err: any, progressReporte
56
});
57
setErrorCode(error, Number(err));
58
sendOperationError(operationId, "build", error);
59
- if (!onBuildFailureProceed && (err === lsPlugin.CompileWorkspaceStatus.WITHERROR || err === lsPlugin.CompileWorkspaceStatus.FAILED)) {
+ if (!onBuildFailureProceed && err) {
60
if (checkErrorsReportedByJavaExtension()) {
61
vscode.commands.executeCommand("workbench.actions.view.problems");
62
}
0 commit comments