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 314b1ab commit cddb805Copy full SHA for cddb805
pkg/cmd/dev.go
@@ -130,8 +130,8 @@ func (m BuildModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
130
if commitUnion == nil {
131
continue
132
}
133
- status, _, _ := extractStepInfo(commitUnion)
134
- if status == "completed" {
+ status, _, conclusion := extractStepInfo(commitUnion)
+ if status == "completed" && conclusion != "fatal" {
135
if download, ok := m.downloads[target]; ok && download.status == "not started" {
136
download.status = "started"
137
cmds = append(cmds, m.downloadTarget(target))
0 commit comments