Skip to content

Commit

Permalink
Dont link to build log if package is in state broken in staging workflow
Browse files Browse the repository at this point in the history
Linking to the live build log when a package is in state broken
doesn't help, since it's the source of the package which causes
the problem and the build log won't show useful infos.

Fixes #7394
  • Loading branch information
krauselukas committed Sep 27, 2019
1 parent cc32f6e commit c853fec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -6,7 +6,7 @@
- values.each do |value|
- coma = ', ' unless values.last == value
= succeed coma do
- if state == 'unresolvable'
- if ['unresolvable', 'broken'].include?(state)
= value[:arch]
- else
= link_to(value[:arch], package_live_build_log_path(package: name,
Expand Down

0 comments on commit c853fec

Please sign in to comment.