From cfac916e541d419f5beefa3616b87484c98c4008 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 10 Feb 2026 15:16:11 -0600 Subject: [PATCH] Fixed setup-cfengine-build-host script to not quote _VERSION variable as an argument that is more than one token Ticket: ENT-13732 Changelog: none --- ci/setup-cfengine-build-host.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup-cfengine-build-host.sh b/ci/setup-cfengine-build-host.sh index cabda2bd3..24687ce1f 100755 --- a/ci/setup-cfengine-build-host.sh +++ b/ci/setup-cfengine-build-host.sh @@ -193,7 +193,7 @@ if ! /var/cfengine/bin/cf-agent -V; then else _VERSION="" fi - cf-remote --log-level info "$_VERSION" install --clients localhost || true + cf-remote --log-level info $_VERSION install --clients localhost || true fi if [ ! -x /var/cfengine/bin/cf-agent ]; then