We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f231784 commit 9e5b3dfCopy full SHA for 9e5b3df
packages/tasks-gen/scripts/inference-codegen.ts
@@ -270,7 +270,7 @@ const allTasks = await Promise.all(
270
(await fs.readdir(tasksDir, { withFileTypes: true }))
271
.filter((entry) => entry.isDirectory())
272
.filter((entry) => entry.name !== "placeholder")
273
- .map(async (entry) => ({ task: entry.name, dirPath: path.join(entry.path, entry.name) }))
+ .map(async (entry) => ({ task: entry.name, dirPath: path.join(entry.parentPath, entry.name) }))
274
);
275
const allSpecFiles = [
276
path.join(tasksDir, "common-definitions.json"),
0 commit comments