commit fb70a4127eef7cdd86cde443c9409c8d7f247ab6 from: Omar Polo date: Fri Oct 21 15:22:41 2022 UTC check pattern after stripping store path and extension now `plass find ^keys' will correctly list only entries that starts with "keys" commit - cdaf1fc5a9f48022b1722c3cceb8a89ae7013409 commit + fb70a4127eef7cdd86cde443c9409c8d7f247ab6 blob - f918a69e586d7233373dbc6ec8665a6c9ecde254 blob + a5147a400cecc040b2f9bb0b2210c2592d828979 --- plass +++ plass @@ -147,12 +147,12 @@ sub passfind { $File::Find::prune = 1; return; } - - return if defined($pattern) && ! m/$pattern/; return unless -f && m,.gpg$,; s,^$store/*,,; s,.gpg$,,; + + return if defined($pattern) && ! m/$pattern/; push @entries, $_; }, no_chdir => 1,