Fix tmux execution (#417) (fix #413)

This commit is contained in:
Roey Darwish Dror
2020-06-03 22:12:45 +03:00
committed by GitHub
parent 98657edb60
commit 94d230dc65

View File

@@ -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()?;