From e3b01d584821fcbb3d7c22f92e86b05d8d05fbd5 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 2 Jul 2020 20:55:21 +0300 Subject: [PATCH] Add indicator for connecting to remote topgrades --- src/steps/generic.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/steps/generic.rs b/src/steps/generic.rs index 7f05c02..538aac5 100644 --- a/src/steps/generic.rs +++ b/src/steps/generic.rs @@ -276,6 +276,9 @@ pub fn run_remote_topgrade(ctx: &ExecutionContext, hostname: &str) -> Result<()> args.push("-y"); } + print_separator(format!("Remote ({})", hostname)); + println!("Connecting to {}...", hostname); + ctx.run_type().execute(&ssh).args(&args).check_run() } }