From a50002d51c97bb255c38a1a556646655f8faf47a Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 3 Jul 2026 05:36:57 +0000 Subject: [PATCH] fix: restore sentinel shared path imports --- scripts/src/hwlab-node-web-sentinel-cicd-shared.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/src/hwlab-node-web-sentinel-cicd-shared.ts b/scripts/src/hwlab-node-web-sentinel-cicd-shared.ts index 943b7d0e..16bbbc11 100644 --- a/scripts/src/hwlab-node-web-sentinel-cicd-shared.ts +++ b/scripts/src/hwlab-node-web-sentinel-cicd-shared.ts @@ -2,9 +2,10 @@ // Responsibility: shared types, config helpers and text render utilities for web-probe sentinel CI/CD. import { createHash } from "node:crypto"; import { existsSync, readFileSync } from "node:fs"; +import { join } from "node:path"; import { resolveCliChildJsonCommandResult } from "./cli-child-json-recovery"; import type { CommandResult } from "./command"; -import { rootPath } from "./config"; +import { repoRoot, rootPath } from "./config"; import type { HwlabRuntimeLaneSpec } from "./hwlab-node-lanes"; import type { RenderedCliResult } from "./output";