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 c93f920 commit 146cc11Copy full SHA for 146cc11
scripts/_GrailsPlugins.groovy
@@ -128,11 +128,14 @@ target(uninstallPlugin:"Uninstalls a plug-in for a given name") {
128
target(listPlugins: "Implementation target") {
129
depends(parseArguments,configureProxy)
130
131
- if (argsMap.repository) {
132
- configureRepositoryForName(argsMap.repository)
133
- updatePluginsList()
134
- printRemotePluginList(argsMap.repository)
135
- printInstalledPlugins()
+ def repository = argsMap.repository
+ if (repository) {
+ eachRepository { name, url ->
+ if(name == repository) {
+ printRemotePluginList(repository)
136
+ printInstalledPlugins()
137
+ }
138
139
}
140
else if (argsMap.installed) {
141
printInstalledPlugins()
0 commit comments