From 52c8dd58f9cd0688c4b3dbacf597c1c922708e88 Mon Sep 17 00:00:00 2001 From: Jose Su Date: Fri, 24 Apr 2026 11:56:53 +0200 Subject: [PATCH] MT#64985 Cosmetic fix in deployment.sh INSTALLER_PATH already contains the '/' at the end, so there is no need to add it when running wget. Change-Id: I83a08356b6a154954b618b5d3882b4a1e73d50df --- templates/scripts/includes/deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/scripts/includes/deployment.sh b/templates/scripts/includes/deployment.sh index c4db9cd..6e6ad3e 100755 --- a/templates/scripts/includes/deployment.sh +++ b/templates/scripts/includes/deployment.sh @@ -2269,7 +2269,7 @@ if "$NGCP_INSTALLER" ; then set_repos echo "Installing package ngcp-installer: ${INSTALLER}" - grml-chroot "${TARGET}" wget "${INSTALLER_PATH}/${INSTALLER}" + grml-chroot "${TARGET}" wget "${INSTALLER_PATH}${INSTALLER}" grml-chroot "${TARGET}" dpkg -i "${INSTALLER}" grml-chroot "${TARGET}" rm -f "${INSTALLER}"