You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
')'.