explicitizing lastscore comparison
authorShawn Boyette <sboyette@esilibrary.com>
Wed, 7 Jan 2009 14:45:57 +0000 (14:45 +0000)
committerShawn Boyette <sboyette@esilibrary.com>
Wed, 7 Jan 2009 14:45:57 +0000 (14:45 +0000)
compress_fingerprints

index 72f84a8..4300429 100755 (executable)
@@ -42,9 +42,9 @@ sub populate_fingerprint {
     $fp{sha1}    = sha1_base64($stripped);
 
     # make sure file is sorted properly
-    if ($lastscore and $fp{compact} > $lastscore) {
+    if ($lastscore and ($fp{compact} > $lastscore)) {
         print "Input file is sorted improperly or unsorted.\n";
-        die "Sort descending (sort -ru) and rerun this script.\n";
+        die "Sort descending (sort -r) and rerun this script.\n";
     }
     $lastscore = $fp{compact};