lib/percheron/stack.rb in percheron-0.7.4 vs lib/percheron/stack.rb in percheron-0.7.5

- old
+ new

@@ -30,11 +30,11 @@ container_names.each_with_object({}) do |container_name, all| all[container_name] = container_from_name(container_name) end end - def shell!(container_name, shell: Percheron::Actions::Shell::DEFAULT_SHELL) - Actions::Shell.new(container_from_name(container_name), shell: shell).execute! + def shell!(container_name, command: Percheron::Actions::Shell::DEFAULT_COMMAND) + Actions::Shell.new(container_from_name(container_name), command: command).execute! end def logs!(container_name, follow: false) Actions::Logs.new(container_from_name(container_name), follow: follow).execute! end