Use foreach for concat

This commit is contained in:
Mike Roberts 2020-10-28 23:01:19 +00:00
parent 97c52d5610
commit a10ca5a195
No known key found for this signature in database
GPG key ID: B68562622B45F745

View file

@ -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
}