Skip to content

Commit

Permalink
attempted fix for GRAILS-8586
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Apr 2, 2012
1 parent f624164 commit a69923a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gradle/assemble.gradle
Expand Up @@ -111,7 +111,7 @@ task pluginsFromSvn {
}

task installResources(type: Copy) {
into projectDir // not actually used, but has to be set to something
into "$buildDir/home-dir" // not actually used, but has to be set to something

into(homeLibDir.name) {
from('grails-resources/src/grails/home/tests')
Expand All @@ -129,6 +129,10 @@ task installResources(type: Copy) {
// the fileMode property above should take care of the chmod work, but
// it doesn't per http://jira.codehaus.org/browse/GRADLE-971
doLast {
ant.copy(todir:projectDir) {
fileset(dir:"$buildDir/home-dir")
}

ant.chmod(dir: homeBinDir, perm: '755', includes: '*')
}

Expand Down

0 comments on commit a69923a

Please sign in to comment.