From 1fa5746ccd88b54a3a712b7863d371bb8b7a6b2d Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 12 Dec 2023 03:13:22 -0700 Subject: [PATCH] ref(webi): show supported OSes, etc with space rather than comma --- _webi/installers.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_webi/installers.js b/_webi/installers.js index 01baa4f..94739da 100644 --- a/_webi/installers.js +++ b/_webi/installers.js @@ -99,10 +99,10 @@ Installers.renderBash = async function ( ['WEBI_PKG_PATHNAME', pkgFile], ['WEBI_PKG_FILE', pkgFile], // TODO replace with pathname ['PKG_NAME', pkg], - ['PKG_OSES', rel.oses], - ['PKG_ARCHES', rel.arches], - ['PKG_LIBCS', rel.libcs], - ['PKG_FORMATS', (rel.formats || []).join(',')], + ['PKG_OSES', (rel.oses || []).join(' ')], + ['PKG_ARCHES', (rel.arches || []).join(' ')], + ['PKG_LIBCS', (rel.libcs || []).join(' ')], + ['PKG_FORMATS', (rel.formats || []).join(' ')], ]; for (let env of envReplacements) {