We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e06b1e commit a4d78c6Copy full SHA for a4d78c6
1 file changed
pkg/components/dev/model.go
@@ -117,6 +117,9 @@ func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
117
case build.TickMsg, build.DownloadMsg, build.ErrorMsg, spinner.TickMsg:
118
m.Build, cmd = m.Build.Update(msg)
119
cmds = append(cmds, cmd)
120
+ if m.Build.Err != nil {
121
+ m.Err = m.Build.Err
122
+ }
123
124
case diagnostics.FetchDiagnosticsMsg:
125
m.Diagnostics, cmd = m.Diagnostics.Update(msg)
0 commit comments