Skip to content

Commit

Permalink
Fix progress bar newline issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Forbes committed Oct 25, 2019
1 parent 1887ac0 commit 22af329
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/repository.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ impl Repository {
.arg(root.join(&self.name()))
.arg("remote")
.arg("rm")
.arg("upstream");
.arg("upstream")
.stdout(Stdio::null())
.stderr(Stdio::null());

child.status()?;

Expand Down

0 comments on commit 22af329

Please sign in to comment.