Skip to content

Commit

Permalink
fix for GRAILS-3157, build.xml and other files no longer overwritten …
Browse files Browse the repository at this point in the history
…on upgrade
  • Loading branch information
graemerocher committed Apr 30, 2009
1 parent dd877ea commit c1d2eb7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/Upgrade.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ move it to the new location of '${basedir}/test/integration'. Please move the di
def tmpDir = new File("${basedir}/tmp-upgrade")
grailsUnpack(dest: tmpDir.path, src: "grails-shared-files.jar")
copy(todir: "${basedir}") {
fileset(dir: tmpDir.path, includes: "*")
fileset(dir: tmpDir.path, includes:"*") {
present(present:"srconly", targetdir:basedir)
}
}
delete(dir: tmpDir.path)
launderIDESupportFiles()
Expand Down

0 comments on commit c1d2eb7

Please sign in to comment.