Print additional newline on Windows before share URL
This commit is contained in:
parent
a20deeb759
commit
b52b2256b8
1 changed files with 4 additions and 1 deletions
|
@ -67,6 +67,9 @@ impl<'a> ProgressReporter for ProgressBar<'a> {
|
|||
#[cfg(not(target_os = "windows"))]
|
||||
progress_bar.finish_print(self.msg_finish);
|
||||
#[cfg(target_os = "windows")]
|
||||
progress_bar.finish_println(self.msg_finish);
|
||||
{
|
||||
progress_bar.finish_println(self.msg_finish);
|
||||
eprintln!();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue