fix: align JD01 dsflash provider deployment

This commit is contained in:
Codex
2026-06-29 10:49:43 +00:00
parent dfb3cfe22f
commit 7d981a9785
4 changed files with 30 additions and 2 deletions
+1 -1
View File
@@ -2611,7 +2611,7 @@ export function stringAt(value: unknown, path: string): string {
return found;
}
function nonEmptyString(value: unknown): string | null {
export function nonEmptyString(value: unknown): string | null {
return typeof value === "string" && value.length > 0 ? value : null;
}
@@ -21,6 +21,7 @@ import {
quickVerifyAccountEnv,
record,
recordTarget,
nonEmptyString,
secretSourcePaths,
sentinelCliSuffix,
shellQuote,