We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e727dbf commit 24cb4f4Copy full SHA for 24cb4f4
app/src/processing/app/gradle/GradleJob.kt
@@ -83,15 +83,15 @@ class GradleJob{
83
return@launch
84
}
85
86
- if(state.value != State.BUILDING){
+ if(state.value == State.RUNNING){
87
Messages.log("Gradle job error: $errors")
88
89
90
91
// An error occurred during the build process
92
93
System.err.println(errors)
94
- service?.editor?.statusError(cause?.message)
+ service?.editor?.statusError(causesList.last().message)
95
}finally {
96
state.value = State.DONE
97
vm.value = null
0 commit comments