refactor: scheduled robot storage path

This commit is contained in:
karishmas6
2024-10-09 03:11:53 +05:30
parent ff096f6b3c
commit fb2ca29fa8

View File

@@ -67,7 +67,7 @@ async function runWorkflow(fileName: string, runId: string) {
async function executeRun(fileName: string, runId: string) {
try {
const recording = await readFile(`./../storage/recordings/${fileName}.waw.json`);
const recording = await readFile(`./../storage/recordings/${fileName}.json`);
const parsedRecording = JSON.parse(recording);
const run = await readFile(`./../storage/runs/${fileName}_${runId}.json`);