From 8c1517dab60ea45d2dd9e3da5a24fac501df59d5 Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta Date: Wed, 6 Aug 2025 14:55:59 +0530 Subject: [PATCH] Fix branch name for micro-services --- gitlab-ci/shared.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab-ci/shared.sh b/gitlab-ci/shared.sh index f2485b82..bfb26f6c 100755 --- a/gitlab-ci/shared.sh +++ b/gitlab-ci/shared.sh @@ -192,7 +192,7 @@ function install_netmngr_as_micro_service() { [ -d "${BBFDM_PLUGIN_DEST}/netmngr" ] && return 0 - exec_cmd git clone -b ${BRANCH:-devel} --depth=1 -b devel https://dev.iopsys.eu/network/netmngr.git ${BBFDM_PLUGIN_DEST}/netmngr + exec_cmd git clone -b ${BRANCH:-devel} --depth=1 https://dev.iopsys.eu/network/netmngr.git ${BBFDM_PLUGIN_DEST}/netmngr exec_cmd apt install iproute2 -y @@ -223,7 +223,7 @@ function install_sysmngr_as_micro_service() { [ -d "${BBFDM_PLUGIN_DEST}/sysmngr" ] && return 0 - exec_cmd git clone -b ${BRANCH:-devel} --depth=1 -b devel https://dev.iopsys.eu/system/sysmngr.git ${BBFDM_PLUGIN_DEST}/sysmngr + exec_cmd git clone -b ${BRANCH:-devel} --depth=1 https://dev.iopsys.eu/system/sysmngr.git ${BBFDM_PLUGIN_DEST}/sysmngr exec_cmd make -C ${BBFDM_PLUGIN_DEST}/sysmngr/src/ clean && \ exec_cmd make -C ${BBFDM_PLUGIN_DEST}/sysmngr/src/ \