Trying to put the config in a subdirectory but it always ends up in root.
What is the correct syntax as below the into directory config is ignored
tasks.processResources { from "config/$customerId" into "$buildDir/config" }
It appears that the syntax to move from a customer config to a config directory is
tasks.processResources { into "$buildDir" from ("config/$customerId"){ into "config" } }
Trying to put the config in a subdirectory but it always ends up in root. What is the correct syntax as below the into directory config is ignored
tasks.processResources { from "config/$customerId" into "$buildDir/config" }