Fixing the build process

Pointing to the main config file because the one that was here got removed.

Change-Id: Id50bf8f0b809d3059c13392acce8deda1a71880b
diff --git a/build.gradle b/build.gradle
index fe27221..6b8afde 100644
--- a/build.gradle
+++ b/build.gradle
@@ -39,7 +39,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)