From 94d230dc6508de816cb67937de52df5f0031ddbd Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Wed, 3 Jun 2020 22:12:45 +0300 Subject: [PATCH] Fix tmux execution (#417) (fix #413) --- 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 0b319946..e99e6e10 100644 --- a/src/steps/tmux.rs +++ b/src/steps/tmux.rs @@ -63,7 +63,7 @@ impl Tmux { fn run_in_session(&self, command: &str) -> Result<()> { self.build() - .args(&["new-window", "-t", "topgrade:1", command]) + .args(&["new-window", "-t", "topgrade", command]) .spawn()? .wait()? .check()?;