From 3bddaf90de4092a9e1c2aaa7f34d8c9f1a669bc1 Mon Sep 17 00:00:00 2001 From: Jeremiah Snee <113928685+jeremiah-snee-openx@users.noreply.github.com> Date: Tue, 2 Jul 2024 23:59:09 -0500 Subject: [PATCH] resultPath --- lib/cli.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/cli.js b/lib/cli.js index 4850453..aff4c1b 100755 --- a/lib/cli.js +++ b/lib/cli.js @@ -43,6 +43,10 @@ async function start() { const end = new Date(); const timeTaken = end.getTime() - start.getTime(); + const resultsPathOld = path.join(process.cwd(), settings.runnerResults); + + console.log(`Reading results from ${resultsPathOld}`); + console.log(`Reading results from ${resultsPath}`); const resultMaps = [collectResults(resultsPath)]; let timeMap = new Map();