Skip to content

Commit 47d53ed

Browse files
author
graeme
committed
fix for GRAILS-1266
git-svn-id: https://svn.codehaus.org/grails/trunk@4609 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent f0be32d commit 47d53ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/Upgrade.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ task( upgrade: "main upgrade task") {
7070
if(new File("${testDir}/CVS").exists()) {
7171
println """
7272
WARNING: Your Grails tests directory '${testDir}' is currently under CVS control so the upgrade script cannot
73-
move it to the new location of '${basedir}/unit/integration'. Please move the directory using the relevant CVS commands."""
73+
move it to the new location of '${basedir}/test/integration'. Please move the directory using the relevant CVS commands."""
7474
}
7575
else if(new File("${testDir}/.svn").exists()) {
7676
println """
7777
WARNING: Your Grails tests directory '${testDir}' is currently under SVN control so the upgrade script cannot
78-
move it to the new location of '${basedir}/unit/integration'. Please move the directory using the relevant SVN commands."""
78+
move it to the new location of '${basedir}/test/integration'. Please move the directory using the relevant SVN commands."""
7979
}
8080
else {
8181
if(new File(testDir).exists()) {

0 commit comments

Comments
 (0)