libnetwork.lib: never use '--depth=1' when cloning from http and https git urls
- fix necessary and tested with code.google.com - additionally print full 'git clone ..' command line used in debug output
This commit is contained in:
parent
eb1d352c92
commit
653fc9cd35
@ -1015,9 +1015,11 @@ not the expected package version"" (${NOTE}${today}git${NORM})..."
|
|||||||
notify.note \
|
notify.note \
|
||||||
"${NOTE}"$"cloning git repository""\
|
"${NOTE}"$"cloning git repository""\
|
||||||
<$git_repository> ${git_branch:+($git_branch)}${NORM}""..."
|
<$git_repository> ${git_branch:+($git_branch)}${NORM}""..."
|
||||||
if [ "$preserve_dot_git" = "0" ]; then
|
if [ "$preserve_dot_git" = "0" -a "${git_repository:0:4}" != "http" ]; then
|
||||||
|
notify.debug "$FUNCNAME: git clone --depth=1 ${git_branch:+-b $git_branch} \"$git_repository\""
|
||||||
git clone --depth=1 ${git_branch:+-b $git_branch} "$git_repository"
|
git clone --depth=1 ${git_branch:+-b $git_branch} "$git_repository"
|
||||||
else
|
else
|
||||||
|
notify.debug "$FUNCNAME: git clone ${git_branch:+-b $git_branch} \"$git_repository\""
|
||||||
git clone ${git_branch:+-b $git_branch} "$git_repository"
|
git clone ${git_branch:+-b $git_branch} "$git_repository"
|
||||||
fi
|
fi
|
||||||
[ $? -eq 0 ] ||
|
[ $? -eq 0 ] ||
|
||||||
|
Loading…
Reference in New Issue
Block a user