提交 8b5785fe 编写于 作者: K kohsuke

Implemented HUDSON-1452


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@7920 71c3de6d-444a-0410-be80-ed276b4c234a
上级 0af3ec2f
......@@ -273,6 +273,10 @@ public class Ant extends Builder {
@DataBoundConstructor
public AntInstallation(String name, String home) {
this.name = name;
if(home.endsWith("/") || home.endsWith("\\"))
// see https://issues.apache.org/bugzilla/show_bug.cgi?id=26947
// Ant doesn't like the trailing slash, especially on Windows
home = home.substring(0,home.length()-1);
this.antHome = home;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册