Skip to content

Commit

Permalink
fix: Sync failure after non-fatal bazel failure (bazelbuild#7119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Pasternak committed Dec 6, 2024
1 parent b57357f commit 1428213
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class BazelExecService(private val project: Project) : Disposable {

parseJob.cancelAndJoin()

if (result.status != BuildResult.Status.SUCCESS) {
if (result.status == BuildResult.Status.FATAL_ERROR) {
BlazeBuildOutputs.noOutputs(result)
} else {
BlazeBuildOutputs.fromParsedBepOutput(result, provider.getBuildOutput())
Expand Down

0 comments on commit 1428213

Please sign in to comment.