提交 60cca83f 编写于 作者: J jglick
上级 8099e4b3
......@@ -393,7 +393,10 @@ public class CVSSCM extends AbstractCVSFamilySCM implements Serializable {
actualCmd = cmd.clone();
actualCmd.add(modulePath.getName());
modulePath = modulePath.getParent();
baseName = baseName.substring(0,baseName.lastIndexOf('/'));
int slash = baseName.lastIndexOf('/');
if (slash > 0) {
baseName = baseName.substring(0, slash);
}
}
if(!run(launcher,actualCmd,listener,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册