Fix '!' inside 'unless' (PBP)

This commit is contained in:
Dan Church 2023-07-20 14:26:37 -05:00
parent d6be215a06
commit 2987e063bd
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ MAIN: {
return if -d $File::Find::name;
# skip non-existent files and links
unless (-f $File::Find::name && ! -l $File::Find::name) {
if (! -f $File::Find::name || -l $File::Find::name) {
return;
}