From: HariomGupta Date: Fri, 1 Oct 2021 12:54:23 +0000 (+0530) Subject: git clone of libssh issue fix X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=3a9830635b439b3aa4e0b1611837de2a8a75a915;p=o-du%2Fl2.git git clone of libssh issue fix Issue-Id: ODUHIGH-372 Signed-off-by: HariomGupta Change-Id: Id443222c049c37b337b39c9577abf97c7e20f19b --- diff --git a/build/scripts/install_lib_O1.sh b/build/scripts/install_lib_O1.sh index 25a75edc9..eefeb48e3 100755 --- a/build/scripts/install_lib_O1.sh +++ b/build/scripts/install_lib_O1.sh @@ -97,7 +97,7 @@ install_netconf_lib() { #1. libssh cd $NETCONF_PATH && \ - git clone -b v0-7 --depth 1 http://git.libssh.org/projects/libssh.git && \ + git clone -c http.sslverify=false -b v0-7 --depth 1 https://git.libssh.org/projects/libssh.git && \ cd libssh; mkdir build; cd build && \ cmake .. && \ make && \