Complete M16 asset operator parity chain
This commit is contained in:
@@ -4,8 +4,10 @@ import path from "node:path";
|
||||
import { fileURLToPath } from "node:url";
|
||||
|
||||
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
|
||||
const planPath = path.join(root, "tests/golden/M15-03A/next-task-plan.json");
|
||||
const outputDir = path.join(root, "tests/golden/M15-03A");
|
||||
const planArg = process.argv.indexOf("--plan-path");
|
||||
const outputArg = process.argv.indexOf("--output-dir");
|
||||
const planPath = path.resolve(root, planArg >= 0 ? process.argv[planArg + 1] : "tests/golden/M15-03A/next-task-plan.json");
|
||||
const outputDir = path.resolve(root, outputArg >= 0 ? process.argv[outputArg + 1] : "tests/golden/M15-03A");
|
||||
const catalogPath = path.join(outputDir, "task-catalog.jsonl");
|
||||
const indexPath = path.join(outputDir, "task-index.json");
|
||||
const sha256 = (bytes) => crypto.createHash("sha256").update(bytes).digest("hex");
|
||||
|
||||
Reference in New Issue
Block a user