lib/minke/tasks/fetch.rb in minke-1.13.14 vs lib/minke/tasks/fetch.rb in minke-1.13.15
- old
+ new
@@ -4,13 +4,17 @@
def run args = nil
@logger.info '### Fetching dependencies'
if @generator_config.build_settings.build_commands.fetch != nil
- run_with_block do
+ run_with_block do |pre_tasks, post_tasks|
+ pre_tasks.call
+
@generator_config.build_settings.build_commands.fetch.each do |command|
run_command_in_container command
end
+
+ post_tasks.call
end
end
end
end