From 817d48e753d69c13b7af475337de58ad9e09d7ed Mon Sep 17 00:00:00 2001 From: Jose Su Date: Thu, 4 Sep 2025 11:51:28 +0200 Subject: [PATCH] MT#63510 Add missing quote in build command inside wrapper.sh There is a missing single quote in the build command for BOOTSTRAP_MIRROR >build_command+=" BOOTSTRAP_MIRROR=${debian_bootstrap_url}'" Change-Id: I07daccfb3c8eeb8ed4ae9a8c307037ba14caf2a4 --- wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper.sh b/wrapper.sh index f5e77ce..f19ed3c 100755 --- a/wrapper.sh +++ b/wrapper.sh @@ -76,7 +76,7 @@ build_command+=" cp -rv /grml/config/ /code/grml-live/" build_command+=" && ulimit -n 1048576" # workaround to fix apt/apt-mark performance issue build_command+=" && GRML_NAME=grml64-small" build_command+=" CHROOT_OUTPUT=/root/grml_chroot" -build_command+=" BOOTSTRAP_MIRROR=${debian_bootstrap_url}'" +build_command+=" BOOTSTRAP_MIRROR='${debian_bootstrap_url}'" build_command+=" LIVE_CONF=/code/grml-live/etc/grml/grml-live.conf" build_command+=" GRML_FAI_CONFIG=${fai_config}" build_command+=" ./grml-live"