Skip to content

Commit

Permalink
Merge branch '2.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed May 1, 2014
2 parents a69e82f + ed0ab9b commit f90c2dd
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -499,7 +499,10 @@ class GrailsProjectWarCreator extends BaseSettingsApi {
}
if(inlinePlugin) {
grailsConsole.updateStatus "Generating plugin.xml for inline plugin ${info.name}"
File targetDir = new File(new File(basedir), targetPluginDir)
File targetDir = new File(targetPluginDir)
if(!targetDir.absolute) {
targetDir = new File(new File(basedir), targetPluginDir)
}
if(!targetDir.exists()) {
targetDir.mkdirs()
}
Expand Down

0 comments on commit f90c2dd

Please sign in to comment.