Skip to content

Commit

Permalink
fix MPE
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Sep 4, 2015
1 parent 111eaec commit 5b66067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ext.checkOutDir = "${buildDir.path}/checkout"
ext.outputDir = "${buildDir.path}/docs"
ext.githubBranch = "3.0.x"

ext.explicitGrailsHome = System.getProperty("grails.home") ?: project.getProperty("grails.home")
ext.explicitGrailsHome = System.getProperty("grails.home") ?: (project.hasProperty('grails.home') ? project.getProperty("grails.home") : null)
ext.grailsHome = explicitGrailsHome ? file(explicitGrailsHome).absolutePath : "$checkOutDir/grails-src"

configurations {
Expand Down

0 comments on commit 5b66067

Please sign in to comment.