From 5e012a957fcb4b878a6449a08ae5cf745b8136ec Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 17 Jun 2019 08:16:08 +0300 Subject: [PATCH] Keep execution of remote topgrades --- src/steps/tmux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/tmux.rs b/src/steps/tmux.rs index 32e7056f..381bb6ef 100644 --- a/src/steps/tmux.rs +++ b/src/steps/tmux.rs @@ -85,7 +85,7 @@ pub fn run_in_tmux() -> ! { pub fn run_remote_topgrade(hostname: &str, ssh: &Path) -> Result<(), Error> { let command = format!( - "{ssh} -t {hostname} env TOPGRADE_PREFIX={hostname} topgrade", + "{ssh} -t {hostname} env TOPGRADE_PREFIX={hostname} TOPGRADE_KEEP_END=1 topgrade", ssh = ssh.display(), hostname = hostname );