From a10ca5a19507b6a036a8d0c03b5c24b394a51164 Mon Sep 17 00:00:00 2001 From: Mike Roberts <2947595+m-roberts@users.noreply.github.com> Date: Wed, 28 Oct 2020 23:01:19 +0000 Subject: [PATCH] Use foreach for concat --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index d4039c6..018c2b0 100644 --- a/main.js +++ b/main.js @@ -154,9 +154,9 @@ async function main() { ] // Used by pybuild - for (const targetArchitecture of targetArchitectures) { + targetArchitectures.forEach(targetArchitecture => { devPackages.concat("libpython3.7-minimal:" + targetArchitecture) - } + }); return devPackages }