Skip to content

Commit 0b254d3

Browse files
committed
Missing catch statement from GRAILS-5759 patch
1 parent 0df19ad commit 0b254d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/ReleasePlugin.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@ target(modifyOrCreatePluginList:"Updates the remote plugin.xml descriptor or cre
234234
// get newest version of plugin list
235235
try{
236236
fetchRemoteFile("${pluginSVN}/.plugin-meta/plugins-list.xml", pluginsListFile)
237-
}(Exception e){
237+
}
238+
catch (Exception e){
238239
println "Error reading remote plugin list [${e.message}], building locally..."
239240
updatePluginsListManually()
240241
}

0 commit comments

Comments
 (0)