From f5292d63af833ad583bb707f21b9f336c024a1d7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 3 Dec 2024 17:11:41 +0100 Subject: [PATCH] mkosi/ci: use a bash array to pass options This patch initially also changed the configuration, but that'll be done in a different way, so all that remains is the syntax change. An array is nicer because the array definition can have inline comments and doesn't use continuation symbols which are easy to mess up in edits. --- .github/workflows/mkosi.yml | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index a7dee7ee256..9e20a63179f 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -132,6 +132,7 @@ jobs: run: | # XXX: drop after the HyperV bug that breaks secure boot KVM guests is solved sed -i "s/'firmware'\s*:\s*'auto'/'firmware' : 'uefi'/g" test/*/meson.build + tee mkosi.local.conf <