aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-10 15:57:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-10 15:57:50 +1200
commitd8595cb5a2916bc1859f2623eaa04a46872eeb81 (patch)
tree99eeb48a53b373a2d652bd6adcaa9c963a88c350
parentUpdate comment to reflect compatibility (diff)
downloadcheckem-d8595cb5a2916bc1859f2623eaa04a46872eeb81.tar.gz
checkem-d8595cb5a2916bc1859f2623eaa04a46872eeb81.zip
Re-clarify module support
-rw-r--r--README.markdown3
-rwxr-xr-xcheckem2
2 files changed, 3 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index 429f653..54a83c6 100644
--- a/README.markdown
+++ b/README.markdown
@@ -3,7 +3,8 @@ Checkem
Find duplicate files efficiently, using Perl on Unix-like operating systems,
and maybe other ones too (untested). Requires only modules that have been in
-Perl core since 5.6.0 at the latest.
+Perl core since 5.7.3 at the latest. On earlier Perls, you will need to install
+`Digest`.
Requires at least one directory argument:
diff --git a/checkem b/checkem
index da6d691..7afcdbb 100755
--- a/checkem
+++ b/checkem
@@ -18,7 +18,7 @@ use utf8;
# Tolerate very old Perls
use 5.006;
-# Import required modules
+# Import modules; Digest is the only one that wasn't in Perl 5.6 core
use Carp;
use Fcntl ':mode';
use File::Find;