Use format strings
This commit is contained in:
parent
e848cc2792
commit
0c9c5707ea
|
@ -145,9 +145,9 @@ async function planDebianPackages(opts) {
|
||||||
if (type === "config") {
|
if (type === "config") {
|
||||||
const clauses = [];
|
const clauses = [];
|
||||||
for (const dep of (langConfigs[lang].install || {}).riju || []) {
|
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");
|
clauses.push("make test");
|
||||||
await runCommand(
|
await runCommand(
|
||||||
`make shell I=runtime CMD="${clauses.join(" && ")}"`
|
`make shell I=runtime CMD="${clauses.join(" && ")}"`
|
||||||
|
|
Loading…
Reference in New Issue