We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50ffd1 commit 21af7efCopy full SHA for 21af7ef
grails-bootstrap/src/main/groovy/grails/util/BuildSettings.groovy
@@ -1640,7 +1640,9 @@ class BuildSettings extends AbstractBuildSettings {
1640
else if (!isFile && !isHidden) {
1641
final fileName = f.name
1642
if (fileName != 'hibernate' && fileName != 'spring') {
1643
- copyDirectoryContentsToTarget(f, new File(targetPath, fileName).path)
+ final newDir = new File(targetPath, fileName)
1644
+ newDir.mkdirs()
1645
+ copyDirectoryContentsToTarget(f, newDir.path)
1646
}
1647
1648
0 commit comments