grails.sh
grails.sh copied to clipboard
Bash script for selecting and calling the correct Grails version when you have more than one version installed
#8 In case you use many different Grails versions for different projects, you might not be able to use a fixed GRAILS_HOME env var, as this can lead to clashes...
Setting GRAILS_HOME as the fallback env var does not work if using more than one Grails versions. Especially Spring-Loaded Classes for Grails 3 can lead to all sort of Problems...
In commit b86a078, wrapper usage was generalized, but is commented out, which causes the wrapper not to be used at all, see Line [60](https://github.com/deluan/grails.sh/blob/master/grails#L60) Any reason why wrapper support was...
Line 24: '=~' expression matchin breaks on Windows (Cygwin) apparently due to the lack of support for =~. Replacing it with '==' works. I guess an exact match is the...