make logging ACTUALLY work

This commit is contained in:
Dario Dorando 2023-09-06 15:09:13 +03:00
parent 83bd37ca12
commit 6ea29d2e6e
3 changed files with 10 additions and 4 deletions

View file

@ -147,8 +147,8 @@ export function fileExistsSync(path: string): boolean {
throw new Error("Arg 'path' must not be empty")
}
console.log(path)
console.log(fs.realpathSync(path))
core.info(path)
core.info(fs.realpathSync(path))
let stats: fs.Stats
try {