Style / presentatino

This commit is contained in:
David Heinemeier Hansson
2023-01-22 11:27:39 +01:00
parent 598e7ab97f
commit 3a9c8455ec

View File

@@ -49,7 +49,7 @@ class Mrsk::Cli::App < Mrsk::Cli::Base
desc "console", "Start Rails Console on primary host (or specific host set by --hosts)"
def console
run_locally do
puts "Launching Rails console on #{MRSK.primary_host}..."
info "Launching Rails console on #{MRSK.primary_host}"
exec MRSK.app.console(host: MRSK.primary_host)
end
end
@@ -57,7 +57,7 @@ class Mrsk::Cli::App < Mrsk::Cli::Base
desc "bash", "Start a bash session on primary host (or specific host set by --hosts)"
def bash
run_locally do
puts "Launching bash session on #{MRSK.primary_host}..."
info "Launching bash session on #{MRSK.primary_host}"
exec MRSK.app.bash(host: MRSK.primary_host)
end
end