Remove unnecessary tmux flag (fix #275)

This commit is contained in:
Roey Darwish Dror
2020-05-14 09:56:41 +03:00
parent 819447dcdf
commit d08de25731

View File

@@ -63,7 +63,7 @@ impl Tmux {
fn run_in_session(&self, command: &str) -> Result<()> { fn run_in_session(&self, command: &str) -> Result<()> {
self.build() self.build()
.args(&["new-window", "-a", "-t", "topgrade:1", command]) .args(&["new-window", "-t", "topgrade:1", command])
.spawn()? .spawn()?
.wait()? .wait()?
.check()?; .check()?;