Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
fi
if test -d ".git" ; then
- if ! git submodule sync || ! git submodule update --init; then
+ if ! git submodule sync || ! git submodule update --init --recursive; then
echo "Error: could not initialize submodule projects"
echo " Network connectivity might be required."
exit 1
git clone ceph.git
cd ceph
- git submodule update --init
+ git submodule update --init --recursive
#. Build with flag to dump objects to /tmp/foo::
Checkout the submodules::
- git submodule update --init
+ git submodule update --init --recursive
4. Update Build version numbers
================================
If your submodules are out of date, run::
- git submodule update
+ git submodule update --init --recursive
Choose a Branch
===============
cd $downstream
git reset --hard $ref || return 1
git submodule sync || return 1
- git submodule update --init || return 1
+ git submodule update --init --recursive || return 1
)
}