Author: bdonlan
Date: 2004-06-26 21:44:57 -0400 (Sat, 26 Jun 2004)
New Revision: 248

Modified:
   trunk/dev-tools/haver-push/push.pl
Log:
Fix off-by-one error in push.pl

Modified: trunk/dev-tools/haver-push/push.pl
===================================================================
--- trunk/dev-tools/haver-push/push.pl  2004-06-27 01:35:19 UTC (rev 247)
+++ trunk/dev-tools/haver-push/push.pl  2004-06-27 01:44:57 UTC (rev 248)
@@ -62,7 +62,7 @@
 $lastrev ||= 1;
 
 my $youngest = `svnlook youngest $repopath`; # XXX: More robust quoting etc
-exit 0 if ($youngest <= $lastrev); # Nothing to do
+exit 0 if ($youngest < $lastrev); # Nothing to do
 
 my $message = MIME::Entity->build(
        Type            => "multipart/mixed",


Reply via email to