unexpectedpanda / retool

Retool: a better filter tool for Redump and No-Intro DAT files.
BSD 3-Clause "New" or "Revised" License
343 stars 22 forks source link

Some command line exclusions are ignored #301

Closed AlvaroBurnett closed 5 months ago

AlvaroBurnett commented 5 months ago

Using the following command line:

python.exe retool.py my_dat_dir --output my_1g1r_dat_dir --config my_user_config.yaml -l --exclude a A b B c d D e k m M p P r u v

Does not filter out bios, betas, demos, promos, samples, unl (seems that 'B', 'P', and 'u' are ignored).

unexpectedpanda commented 5 months ago

I think this is a syntax thing. Try the exclusions without the spaces between them:

python.exe retool.py my_dat_dir --output my_1g1r_dat_dir --config my_user_config.yaml -l --exclude aAbBcdDekmMpPruv
AlvaroBurnett commented 5 months ago

Confirmed. That solved the problem. Thanks

unexpectedpanda commented 5 months ago

Excellent :)