From 1fb2c71f6544e7227a61bd2a1521b0103dd04e05 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 3 Feb 2023 17:22:55 +0100 Subject: [PATCH] Follow same dot style --- lib/mrsk/cli/app.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mrsk/cli/app.rb b/lib/mrsk/cli/app.rb index abab40a5..7fdad85a 100644 --- a/lib/mrsk/cli/app.rb +++ b/lib/mrsk/cli/app.rb @@ -68,14 +68,14 @@ class Mrsk::Cli::App < Mrsk::Cli::Base when options[:reuse] say "Get current version of running container...", :magenta unless options[:version] using_version(options[:version] || current_running_version) do |version| - say "Launching command with version #{version} from existing container on #{MRSK.primary_host}", :magenta + say "Launching command with version #{version} from existing container on #{MRSK.primary_host}...", :magenta on(MRSK.hosts) { |host| puts_by_host host, capture_with_info(*MRSK.app.execute_in_existing_container(cmd)) } end else say "Get most recent version available as an image...", :magenta unless options[:version] using_version(options[:version] || most_recent_version_available) do |version| - say "Launching command with version #{version} from new container on #{MRSK.primary_host}", :magenta + say "Launching command with version #{version} from new container on #{MRSK.primary_host}...", :magenta on(MRSK.hosts) { |host| puts_by_host host, capture_with_info(*MRSK.app.execute_in_new_container(cmd)) } end end