When svn commandline client returns:
A (bin) FILENAME
the output can not be parsed. A warning is given.
Possible solution:
In org.tigris.subversion.svnclientadapter.commandline.parser.SvnOutParser.java
it says:
new SvnActionRE("A (bin) ([^ ].+)",CmdLineNotifyAction.add,SvnActionRE.PATH),
I think it should be:
new SvnActionRE("A \(bin\) ([^
].+)",CmdLineNotifyAction.add,SvnActionRE.PATH),
since '(' and ')' are use to create groups and do no match the character '(' and
')'.