Fixing the build process
Pointing to the main config file because the one that was here got removed.
Change-Id: Iba6133e86d2b079b6a7c328c275aa2da0641a533
diff --git a/build.gradle b/build.gradle
index 7c76ce8..b01061c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -56,7 +56,7 @@
// Deployment target config file (yaml format); this can be overwritten from the command line
// using the -PdeployConfig=<file-path> syntax.
- deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : './config/default.yml'
+ deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : '../build/config/default.yml'
println "Using deployment config: $deployConfig"
File configFile = new File(deployConfig)