X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=runchecks;h=535fa6834c353ef6d53679ca8c9b2f33b98c1be9;hb=98307380429da3ad6e18c99200da6449719dc106;hp=3467c288806bbf2e52bec62fbc938dedabb249f1;hpb=04dd40d98617a67de54f661482f2955acc4a1d52;p=chksht.git diff --git a/runchecks b/runchecks index 3467c28..535fa68 100755 --- a/runchecks +++ b/runchecks @@ -2,6 +2,10 @@ use strict; my $dir = shift; +unless ($dir) { + print "No directory specified\n"; + exit 1; +} unless (-d $dir) { print "$dir is not a directory\n"; exit 1;