Skip to content

Commit

Permalink
fix: output dir interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevcodez committed Nov 23, 2023
1 parent 31dd5e5 commit 9ca73e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ function findOutdatedDependencies() {
}

function findUpgradeJsonReportFiles() {
const reportJsonPath = "${outputDir}/report.json";
const reportJsonPath = `${outputDir}/report.json`;
const upgradeReportFiles = [];
if (existsSync(reportJsonPath)) {
upgradeReportFiles.push(reportJsonPath);
Expand Down

0 comments on commit 9ca73e5

Please sign in to comment.