diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/lb_config b/scripts/build/lb_config index 466f04f7c..23d44a9e5 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -874,12 +874,14 @@ if [ -n "${_CONFIG}" ] then _GIT_REPOSITORY="$(echo ${_CONFIG} | sed -e 's|::.*$||')" + Echo_message "Cloning ${_GIT_REPOSITORY}" git clone ${_GIT_REPOSITORY} ./ if [ "${_GIT_REPOSITORY}" != "${_CONFIG}" ] then _GIT_BRANCH="$(echo ${_CONFIG} | awk -F\:\: '{ print $NF }')" + Echo_message "Checking out ${_GIT_BRANCH}" git checkout ${_GIT_BRANCH} fi fi |