Subject: | quotemeta needed in SQL::Translator::_list |
This breaks `sqlt --list'
in sub _list , around line 686
my $base_dir = catfile 'SQL', 'Translator', $uctype;
ought to be
my $base_dir = quotemeta catfile 'SQL', 'Translator', $uctype;
you should check all your source code for this, as it is commonly overlooked.
Cheers