moving to repo

Change-Id: I0a63317fe0ec2d7259212807e99ca79e479d4e4f
diff --git a/build.gradle b/build.gradle
index ba94d23..f72dd13 100644
--- a/build.gradle
+++ b/build.gradle
@@ -118,17 +118,12 @@
   }
 }
 
-task fetchUpstreamImages {
-    comps.each { name, spec -> if (spec.type == 'image') { dependsOn "fetch" + name } }
+task fetch << {
+    logger.info 'Platform install has nothing to fetch'
 }
 
-task fetchGitSubmodules {
-    comps.each { name, spec -> if (spec.type == 'gitmodule') { dependsOn "gitupdate" + name } }
-}
-
-task fetch {
-    dependsOn fetchUpstreamImages
-    dependsOn fetchGitSubmodules
+task buildImages << {
+    logger.info 'Platform install has nothing to build'
 }
 
 task publishImages {