Merge "Fix docker-entrypoint.sh"
diff --git a/build/docker-entrypoint.sh b/build/docker-entrypoint.sh
index 81dcd84..d6f526d 100755
--- a/build/docker-entrypoint.sh
+++ b/build/docker-entrypoint.sh
@@ -164,12 +164,12 @@
         done
 
         # Download all packages via apt-get to repository folder
-        for i in $(cat ${list_file});do echo apt-get download $i -y; done
+        for i in $(cat ${list_file});do apt-get download $i -y; done
         for i in $(cat ${list_file});
             do
                 for depends in $(apt-cache depends $i | grep -E 'Depends' | grep -v 'Depends:.*>$' | cut -d ':' -f 2,3 | sed -e s/'<'/''/ -e s/'>'/''/);
                 do
-echo                    apt-get download $depends -y;
+                    apt-get download $depends -y;
                 done;
             done