Skip to content

Commit

Permalink
minor fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Jun 23, 2011
1 parent eb93dc6 commit cf1c562
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ public String getArgs(String appName) {
if (railsVersion.getMajor() > 3) {
newArg = true;
} else if (railsVersion.getMajor() == 3) {
if (railsVersion.getQualifier() != null) {
if (railsVersion.getMinor() == 0 && railsVersion.getMicro() == 0 && railsVersion.getQualifier().length() != 0) {
if ("beta4".equals(railsVersion.getQualifier())) {
newArg = true;
}
Expand Down

0 comments on commit cf1c562

Please sign in to comment.