Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hocgin committed Aug 23, 2024
1 parent aa7756c commit 9dcafa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function run(input: Inputs): Promise<Outputs> {
let baseDir = process.cwd();
const absPath = path.join(baseDir, path.dirname(file), path.basename(file));
if (!fs.existsSync(absPath)) {
warning(`not found file. absPath = ${absPath}`)
warning(`not found file. baseDir = ${baseDir}, absPath = ${absPath}`)
} else {
fileContent = fs.readFileSync(absPath).toString();
}
Expand Down

0 comments on commit 9dcafa2

Please sign in to comment.