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
')'.
Metadata Imported from Tigris (Issue 1443)
Creation Date: 2012-08-07 03:26:41
Reporter: guidol
Subcomponent: svnClientAdapter
Version: current
Milestone: not determined
Keywords:
Cc:
The text was updated successfully, but these errors were encountered:
Description
Metadata Imported from Tigris (Issue 1443)
The text was updated successfully, but these errors were encountered: