From 184ab18667c9870eb4c53a76f06a0f54d446cf2f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 12 Jan 2023 17:38:26 +0100 Subject: [PATCH] Style --- lib/tasks/mrsk/app.rake | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/tasks/mrsk/app.rake b/lib/tasks/mrsk/app.rake index da1a6c3c..684cdf1d 100644 --- a/lib/tasks/mrsk/app.rake +++ b/lib/tasks/mrsk/app.rake @@ -107,16 +107,12 @@ namespace :mrsk do namespace :remove do desc "Remove app containers from servers" task :containers do - on(MRSK.config.hosts) do - execute *MRSK.app.remove_containers - end + on(MRSK.config.hosts) { execute *MRSK.app.remove_containers } end desc "Remove app images from servers" task :images do - on(MRSK.config.hosts) do - execute *MRSK.app.remove_images - end + on(MRSK.config.hosts) { execute *MRSK.app.remove_images } end end end