From 5c9a602d7688370ae183e9528d0950c316438608 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 3 Feb 2023 17:46:41 +0100 Subject: [PATCH] Fixed host --- lib/mrsk/commands/accessory.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mrsk/commands/accessory.rb b/lib/mrsk/commands/accessory.rb index 8362cc9f..6cc6bf5c 100644 --- a/lib/mrsk/commands/accessory.rb +++ b/lib/mrsk/commands/accessory.rb @@ -66,11 +66,11 @@ class Mrsk::Commands::Accessory < Mrsk::Commands::Base end def execute_in_existing_container_over_ssh(*command) - run_over_ssh execute_in_existing_container(*command, interactive: true).join(" "), host: host + run_over_ssh execute_in_existing_container(*command, interactive: true).join(" ") end def execute_in_new_container_over_ssh(*command) - run_over_ssh execute_in_new_container(*command, interactive: true).join(" "), host: host + run_over_ssh execute_in_new_container(*command, interactive: true).join(" ") end def run_over_ssh(command)