Kaydet (Commit) 73b50b73 authored tarafından Miklos Vajna's avatar Miklos Vajna

g clone: fix non-referenced cloning

Change-Id: I98d6f5c20bacbb5d6457857906c591fea034288a
üst f624144e
......@@ -254,11 +254,13 @@ local configured
git submodule init $module || return $?
fi
done
if [ -n "$REFERENCED_GIT" ] ; then
for module in $SUBMODULES_CONFIGURED ; do
for module in $SUBMODULES_CONFIGURED ; do
if [ -n "$REFERENCED_GIT" ] ; then
git submodule update --reference $REFERENCED_GIT/.git/modules/$module $module || return $?
done
fi
else
git submodule update $module || return $?
fi
done
return 0
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment