From 0c9c5707ea8b2d5a2681904268d4c1004fe2d63f Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 16 Jan 2021 10:03:49 -0800 Subject: [PATCH] Use format strings --- tools/plan-publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/plan-publish.js b/tools/plan-publish.js index 6cced7e..e55c926 100644 --- a/tools/plan-publish.js +++ b/tools/plan-publish.js @@ -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(" && ")}"`