refactor: variableize yaml lane node naming

This commit is contained in:
Codex
2026-07-09 10:46:55 +02:00
parent e9457ace4a
commit 37a6b70793
123 changed files with 1572 additions and 1571 deletions
+2 -2
View File
@@ -392,8 +392,8 @@ async function main(): Promise<void> {
return;
}
if (sub === "g14") {
const { runHwlabG14Command } = await import("./src/hwlab-g14");
const result = await runHwlabG14Command(readConfig(), args.slice(2));
const { runHwlabLegacyRuntimeCommand } = await import("./src/hwlab-legacy-runtime");
const result = await runHwlabLegacyRuntimeCommand(readConfig(), args.slice(2));
const ok = (result as { ok?: unknown }).ok !== false;
emitJson(commandName, result, ok);
if (!ok) process.exitCode = 1;