lib/itamae/recipe.rb in itamae-1.8.0 vs lib/itamae/recipe.rb in itamae-1.9.0
- old
+ new
@@ -59,12 +59,14 @@
end
def run
show_banner
- Itamae.logger.with_indent do
- @children.run
- run_delayed_notifications
+ @runner.handler.event(:recipe, path: @path) do
+ Itamae.logger.with_indent do
+ @children.run
+ run_delayed_notifications
+ end
end
end
private