Other people might find this interesting too ...
I discovered that amlint doesn't know about .definition bundles
that are installed in ~/Library/Automator. This is annoying but
easy to fix. Turns out that amlint is written in Perl so a quick
fix was simply found:
Around line 155, simply add this section:
foreach ( glob("~/Library/Automator/*.definition") )
{
my $d = plist(-f $_ ? $_ : "$_/Contents/
Resources/definition.plist");
# XXX: handles the now-obsolete
file-based definitions.
push @defined_types, keys %{$$d
{'defined_types'}};
}
Not sure what the XXX comment means, but it is also in the original
code.
S.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Automator-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden