skx / cpmulator

Golang CP/M emulator for zork, Microsoft BASIC, Turbo Pascal, Wordstar, lighthouse-of-doom, etc
MIT License
98 stars 3 forks source link

Virtual files aren't excluded when they're supposed to be #110

Closed skx closed 4 months ago

skx commented 5 months ago

We should a, fix it, and b, add a test case.

This is fine:

A>dir C*
A: CCP     .COM | CONSOLE .COM | CPMULATO.    | CTRLC   .COM

This is not:

A>dir *.me
A: #       .COM | CCP     .COM | CONSOLE .COM | CTRLC   .COM
A: QUIET   .COM

I suspect it's the suffix-matching that is to blame, and should be a trivial fix.