|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Hi,
I ran into the same " (format '100')" error. Of course there is no such format (yet for a long time). The current format is '12' for 1.8.x.
The problem seem to be that on a checkout no newline is added to the format file ".svn/format". It does read '12', but it doesn't add the newline and then the plugin reads the file as '100' instead of '12' (which could also be considered a bug).
As a quick fix you can run:
cd /your/jenkins/workspace;
for f in $( ls */.svn/format ); do echo "12" > $f ; done
But after a run the value is overwritten again.
Bart