pgit.sh: Run git submodule init and git submodule update in pgit.sh clone

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2016-04-19 16:45:01 +00:00
commit 1c5fdddf5a

View file

@ -62,6 +62,11 @@ clone()
} }
marker "cloning $p" marker "cloning $p"
git clone ssh://$id@git.jannet.de/srv/git/$id/proj/$p git clone ssh://$id@git.jannet.de/srv/git/$id/proj/$p
(
cd $p
git submodule init
git submodule update
)
done done
)} )}