Skip to content

Commit 9ca73e5

Browse files
committed
fix: output dir interpolation
1 parent 31dd5e5 commit 9ca73e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ function findOutdatedDependencies() {
288288
}
289289

290290
function findUpgradeJsonReportFiles() {
291-
const reportJsonPath = "${outputDir}/report.json";
291+
const reportJsonPath = `${outputDir}/report.json`;
292292
const upgradeReportFiles = [];
293293
if (existsSync(reportJsonPath)) {
294294
upgradeReportFiles.push(reportJsonPath);

0 commit comments

Comments
 (0)