config.groovyにコードがあります
def ENV_NAME = "/home/myFolder"
if(System.getenv("ENV_NAME")) {
println( "Including configuration file: " + System.getenv("ENV_NAME"));
grails.config.locations << "file:" + System.getenv("ENV_NAME")
} else {
println "No external configuration file defined."
}
実行すると、「外部構成ファイルが定義されていません。」という結果になります。何が欠けていますか?