From 34f47c8f1845821cc84071f5e27c24e8704e46e8 Mon Sep 17 00:00:00 2001 From: Charney Date: Fri, 26 Jan 2024 09:18:16 -0800 Subject: [PATCH] If configPath not found, log actual failed path --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 22203f7..78e8f71 100644 --- a/src/index.ts +++ b/src/index.ts @@ -53,6 +53,7 @@ function ensureAndGetConfigPath(): string { const relPath = path.join(workspacePath, relativeFilePath); if (!fs.existsSync(relPath)) { + core.error(`File not found at path: ${relPath}`); throw new Error(`File not found at path: ${relPath}`); }