If somebody else have the same issue, here the workaround which I'm using on slaves:
In Source Code Management / Mercurial / Advanced / Subdirectory I'm specifying directory fake and adding at the beginning of build
Unix:

if [ -d MyRepo ]; then
    hg -R MyRepo update
else
    hg --config extensions.share= share fake MyRepo
fi

Windows:

if exist MyRepo\nul (hg -R MyRepo update) else (hg --config extensions.share= share fake MyRepo)
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

Reply via email to