Use format strings

This commit is contained in:
Radon Rosborough 2021-01-16 10:03:49 -08:00
parent e848cc2792
commit 0c9c5707ea
1 changed files with 2 additions and 2 deletions

View File

@ -145,9 +145,9 @@ async function planDebianPackages(opts) {
if (type === "config") {
const clauses = [];
for (const dep of (langConfigs[lang].install || {}).riju || []) {
clauses.push("make install T=shared L=${dep}");
clauses.push(`make install T=shared L=${dep}`);
}
clauses.push("make installs L=${lang}");
clauses.push(`make installs L=${lang}`);
clauses.push("make test");
await runCommand(
`make shell I=runtime CMD="${clauses.join(" && ")}"`