Fix builders.sh

Change-Id: I9da0c711d50dab263ae944c26be14dcbc04ecd17
Signed-off-by: Saheer Babu <saheer.babu@arm.com>
diff --git a/ci-dockerfiles-deployment/builders.sh b/ci-dockerfiles-deployment/builders.sh
index 5c7f290..6ec7a0a 100755
--- a/ci-dockerfiles-deployment/builders.sh
+++ b/ci-dockerfiles-deployment/builders.sh
@@ -10,24 +10,26 @@
 env |grep '^GERRIT'
 echo "########################################################################"
 
-ON_EC2="0"
-if [ -f /sys/hypervisor/uuid ] && grep -q ^ec2 /sys/hypervisor/uuid; then
-    ON_EC2="1"
-fi
+# ON_EC2="0"
+# if [ -f /sys/hypervisor/uuid ] && grep -q ^ec2 /sys/hypervisor/uuid; then
+#     ON_EC2="1"
+# fi
 
-if [ "${ON_EC2}" == "1" ]; then
-    # On EC2 instances, stop and remove unattended-upgrades service which
-    # may interfere with any apt operations below.
-    sudo systemctl stop unattended-upgrades || true
-    sudo apt-get remove -y -qq unattended-upgrades
-fi
+# if [ "${ON_EC2}" == "1" ]; then
+#     # On EC2 instances, stop and remove unattended-upgrades service which
+#     # may interfere with any apt operations below.
+#     sudo systemctl stop unattended-upgrades || true
+#     sudo apt-get remove -y -qq unattended-upgrades
+# fi
 
-# For dpkg-architecture call below
-if ! type dpkg-architecture
-then
-    sudo apt-get -y -qq update
-    sudo apt-get -y -qq install --no-install-recommends dpkg-dev
-fi
+# # For dpkg-architecture call below
+# if ! type dpkg-architecture
+# then
+#     sudo apt-get -y -qq update
+#     sudo apt-get -y -qq install --no-install-recommends dpkg-dev
+# fi
+
+sleep 3600
 
 if ! type aws
 then