|
||||||||
|
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/groups/opt_out.

Please look at this part of the stack trace:
at hudson.FilePath.deleteRecursive(FilePath.java:997)
at hudson.plugins.mercurial.MercurialSCM.clone(MercurialSCM.java:547)
Should MercurialSCM.java:547 really call "FilePath.deleteRecursive"? Maybe the best approach would be to simply let mercurial do the cleaning as in the 2 lines below:
hg up -C .
hg --config extensions.purge= clean --all
But there's another problem: since "Clean Build" is NOT checked, I guess there should be no need to perform the "clean --all" step; only "hg up -C ." should be enough, right?