From 4b59574334fa2bd27191aa592f46845b4b184a5d Mon Sep 17 00:00:00 2001 From: "wansu.yoo" Date: Mon, 11 Dec 2017 13:42:07 +0900 Subject: [PATCH 1/1] Update gitmodules.sh for removing init/update script 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 Change-Id: I918dd22d76230797a49a12df0bb34f72f5ebdec2 --- packaging/gitmodules.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packaging/gitmodules.sh b/packaging/gitmodules.sh index a0b00e5..b89a132 100644 --- a/packaging/gitmodules.sh +++ b/packaging/gitmodules.sh @@ -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}" -- 2.7.4