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 6447df7 commit 561c811Copy full SHA for 561c811
src/java/org/codehaus/groovy/grails/resolve/PluginInstallEngine.groovy
@@ -308,7 +308,8 @@ class PluginInstallEngine {
308
if (currentInstall?.exists()) {
309
310
PluginBuildSettings pluginSettings = pluginSettings
311
- def pluginInfo = pluginSettings.getPluginInfo(currentInstall.file.absolutePath)
+ def pluginDir = currentInstall.file
312
+ def pluginInfo = pluginSettings.getPluginInfo(pluginDir.absolutePath)
313
// if the versions are the same no need to continue
314
if(version == pluginInfo?.version) return true
315
0 commit comments