Displaying 1 result from an estimated 1 matches for "4f94e20".
Did you mean:
4b93e20
2011 Jan 20
1
[PATCH] Don't display a progress bar if stderr isn't on a tty
...attempt to write
an exceptionally long progress bar.
Fixes RHBZ#671083
---
lib/Sys/VirtV2V/Connection/Source.pm | 30 ++++++++++++++++++++++--------
1 files changed, 22 insertions(+), 8 deletions(-)
diff --git a/lib/Sys/VirtV2V/Connection/Source.pm b/lib/Sys/VirtV2V/Connection/Source.pm
index 4f94e20..5216503 100644
--- a/lib/Sys/VirtV2V/Connection/Source.pm
+++ b/lib/Sys/VirtV2V/Connection/Source.pm
@@ -126,9 +126,20 @@ sub _volume_copy
# Copy the contents of the source stream to the destination stream
my $total = 0;
- my $progress = new Term::ProgressBar({name => $src->ge...