Add indicator for connecting to remote topgrades

This commit is contained in:
Roey Darwish Dror 2020-07-02 20:55:21 +03:00
parent 1728e3550f
commit e3b01d5848

View File

@ -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()
}
}