提交 1dabc681 编写于 作者: K kohsuke

fixed #422.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@2850 71c3de6d-444a-0410-be80-ed276b4c234a
上级 4b7d780d
......@@ -193,7 +193,7 @@ class ChangeLogParser {
if (line.startsWith("Working file:")) {
m_file = line.substring(14, line.length());
File repo = new File(new File(owner.getDir(), m_file), "../CVS/Repository");
File repo = new File(new File(owner.getDir(), m_file).getParentFile(), "CVS/Repository");
try {
String module = FileUtils.readFileToString(repo, null);// not sure what encoding CVS uses.
String simpleName = m_file.substring(m_file.lastIndexOf('/')+1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册