Update gitmodules.sh for removing init/update script 93/163393/2
authorwansu.yoo <wansu.yoo@samsung.com>
Mon, 11 Dec 2017 04:42:07 +0000 (13:42 +0900)
committerwansu.yoo <wansu.yoo@samsung.com>
Mon, 11 Dec 2017 05:09:24 +0000 (14:09 +0900)
it works with current .gitmodules file and .gitmodules was made from
previous tar files.
so it should not executed when push with new commit.

Signed-off-by: wansu.yoo <wansu.yoo@samsung.com>
Change-Id: I918dd22d76230797a49a12df0bb34f72f5ebdec2

packaging/gitmodules.sh

index a0b00e5..b89a132 100644 (file)
@@ -11,8 +11,11 @@ git submodule status | awk '{ print $2 }' | while read dir  ; do
     name=$(basename "$dir" )
     echo "name="
     echo "dir=$dir"
-    git submodule init
-    git submodule update
+# remove submodule init and upste script at gitmodule.sh file
+# it works with current .gitmodules file and .gitmodules was made from previous tar files
+# so it should not executed when push with new commit
+#    git submodule init
+#    git submodule update
 
     tar cjvf "./packaging/${name}.tar.bz2" "${dir}"