From: Shawn Boyette Date: Wed, 7 Jan 2009 14:45:57 +0000 (+0000) Subject: explicitizing lastscore comparison X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=dad3374b4fd8558b32d0444c7c56989021555cd4 explicitizing lastscore comparison --- diff --git a/compress_fingerprints b/compress_fingerprints index 72f84a8..4300429 100755 --- a/compress_fingerprints +++ b/compress_fingerprints @@ -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};