Method: Minke::Tasks::Fetch#run

Defined in:
lib/minke/tasks/fetch.rb

#run(args = nil) ⇒ Object



5
6
7
8
9
10
11
12
# File 'lib/minke/tasks/fetch.rb', line 5

def run args = nil
  puts "## Update dependencies"
  run_with_block do
    @generator_settings.build_settings.build_commands.fetch.each do |command|
      run_command_in_container command
    end
  end
end