Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
ensure project type hints in server-generated config file are lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Feb 25, 2013
1 parent ab2cc3c commit 80a0da7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -86,7 +86,7 @@ public String getConfigurationFileContents(String projectSlug, String iterationS
else
{
var.append(" <!--<project-type>");
var.append(StringUtils.join(ProjectType.values(), "|"));
var.append(StringUtils.join(ProjectType.values(), "|").toLowerCase());
var.append("</project-type>-->\n");
}
var.append("\n");
Expand Down

0 comments on commit 80a0da7

Please sign in to comment.