From a4b66874db35b0ad64257b202dc48d43924eb14e Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Thu, 13 Dec 2007 09:14:32 +0000 Subject: Bug 408032: [Oracle] Make bzdbcopy.pl work with Oracle Patch By Max Kanat-Alexander (module owner) a=mkanat --- Bugzilla/Install/Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Install/Util.pm') diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 3942aa82a..67aeb4873 100644 --- a/Bugzilla/Install/Util.pm +++ b/Bugzilla/Install/Util.pm @@ -80,7 +80,7 @@ sub indicate_progress { my $every = $params->{every} || 1; print "." if !($current % $every); - if ($current % ($every * 60) == 0) { + if ($current == $total || $current % ($every * 60) == 0) { print "$current/$total (" . int($current * 100 / $total) . "%)\n"; } } -- cgit v1.2.3-24-g4f1b