提交 e0634be2 编写于 作者: K kohsuke
上级 b67323cd
......@@ -210,7 +210,10 @@ public class CVSSCM extends AbstractCVSFamilySCM implements Serializable {
if(!mf.isDirectory()) {
// this module is just a file, say "foo/bar.txt".
// to record "foo/CVS/*", we need to start by archiving "foo".
m = m.substring(0,m.lastIndexOf('/'));
int idx = m.lastIndexOf('/');
if(idx==-1)
throw new Error("Kohsuke probe: m="+m);
m = m.substring(0, idx);
mf = mf.getParentFile();
}
archive(mf,m,zos);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册