Skip to content
Snippets Groups Projects
Commit e8f1cb1e authored by Thomas Järvstrand's avatar Thomas Järvstrand
Browse files

Don't crash template generation after compile-time error

parent 410b29a6
No related branches found
No related tags found
No related merge requests found
...@@ -4,10 +4,12 @@ Start time: <%= @run_status.start_time %> ...@@ -4,10 +4,12 @@ Start time: <%= @run_status.start_time %>
End time: <%= @run_status.end_time %> End time: <%= @run_status.end_time %>
Elapsed time: <%= @run_status.elapsed_time %> Elapsed time: <%= @run_status.elapsed_time %>
<% if @run_status.updated_resources -%>
Updated Resources: Updated Resources:
<% @run_status.updated_resources.each do |r| -%> <% @run_status.updated_resources.each do |r| -%>
<%= r.to_s %> <%= r.to_s %>
<% end -%>
<% end -%> <% end -%>
<% if @run_status.failed? -%> <% if @run_status.failed? -%>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment