From 605ea3628b05d287275a6b6c06889cdb1c08692e Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sat, 1 May 2021 13:50:43 +0200 Subject: [PATCH] Fix forgotten "git_root" in func_book_parser --- common/libs/func_book_parser | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/libs/func_book_parser b/common/libs/func_book_parser index c11b21d..d4ebec7 100644 --- a/common/libs/func_book_parser +++ b/common/libs/func_book_parser @@ -24,7 +24,7 @@ get_book() { # # repo. If we've already extracted the commands, move on to getting the # sources. if [ ! -d ${PROGNAME}-${LFSVRS}/.git ]; then - git clone $GIT ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1 + git clone $GIT/$git_root ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1 if [ ! $TREE == "development" ]; then pushd ${PROGNAME}-$LFSVRS > /dev/null echo "Checking out $LFSVRS at $PWD in $TREE"