We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca27764 commit 7ee744cCopy full SHA for 7ee744c
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