diff --git a/dist/index.js b/dist/index.js index 5905299..5f84df9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1781,7 +1781,13 @@ function readFile(path) { return fs.readFileSync(path, 'utf-8'); } function readFileBase64(pathParts) { - return fs.readFileSync(path.resolve(...pathParts)).toString('base64'); + const resolvedPath = path.resolve(...pathParts); + if (fs.lstatSync(resolvedPath).isSymbolicLink()) { + return fs + .readlinkSync(resolvedPath, { encoding: 'buffer' }) + .toString('base64'); + } + return fs.readFileSync(resolvedPath).toString('base64'); } /* eslint-disable @typescript-eslint/no-explicit-any */ function hasErrorCode(error) { diff --git a/report.txt b/report.txt new file mode 100644 index 0000000..34828d4 --- /dev/null +++ b/report.txt @@ -0,0 +1 @@ +1726680656