Robin Bowes wrote:

> One thought - are your files called "*.FLAC", i.e. capital letters? If
> so, you might like to try changing this line:
> 
> my @flac_files = File::Find::Rule->file()->name('*.flac')->in('.');
> 
> to this:
> 
> my @flac_files = File::Find::Rule->file()
>       ->extras( { follow => 1 })
>       ->name(qr/\.flac$/i)
>       ->in('.');
> 
> This makes the file search case-insensitive.

I should add that this change will be in v0.3.0 which I *really* should
release very soon.

R.

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping

Reply via email to