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.
2 parents c373c10 + 94f2b96 commit fcad901Copy full SHA for fcad901
scripts/Alias.groovy
@@ -22,18 +22,16 @@ target(default: 'Configures aliases for grails commands') {
22
if (!params) {
23
if (argsMap.list) {
24
listAliases()
25
+ } else if(argsMap.delete) {
26
+ removeAlias()
27
} else {
28
println usage()
29
exit 1
30
}
31
exit 0
32
33
if (params.size() == 1) {
- if (argsMap.delete) {
- removeAlias()
34
- } else {
35
- showAlias()
36
- }
+ showAlias()
37
38
configureAlias()
39
0 commit comments