mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-01 21:02:12 +03:00
* chore(release): open v3.8.20 development cycle * fix(images): prefer bare combos over image aliases (#3527) Integrated into release/v3.8.20 * fix(translator): map Codex local_shell tool (#3534) Integrated into release/v3.8.20 * fix(usage): make opencode-go quota fetcher fail-open instead of throwing 500 (#3522) Integrated into release/v3.8.20 * Fix Runtime page breaker state rendering (#3533) Integrated into release/v3.8.20 * Expose provider breaker degradation threshold setting (#3535) Integrated into release/v3.8.20 * fix(executor): strip provider prefix from versioned built-in tool model field (#3532) Integrated into release/v3.8.20 * feat(providers): add Claude Fable 5 support (#3524) Integrated into release/v3.8.20 * feat(resilience): add global provider cooldown tracking to prevent combo re-walking (#3556) Integrated into release/v3.8.20 (default OFF, opt-in) * fix(translator): scope thoughtSignature bypass to Antigravity/CLI only (#3560) Integrated into release/v3.8.20. Co-authored-by: Six7Day <six7day@gmail.com> * fix(routing): normalize thinking:disabled for combo-substituted models that reject it (#3554) (#3563) Integrated into release/v3.8.20 * fix(usage): accept 0/empty budget limits so the dashboard can save and clear (#3537) (#3564) Integrated into release/v3.8.20 * docs(changelog): credit @Six7Day for #3560 thoughtSignature fix (#3414) The #3560 squash co-author trailer landed inline (unparsed by GitHub), so add an explicit CHANGELOG credit ensuring @Six7Day (original #3414) and @oyi77 are on the public record for the Gemini thoughtSignature fix. * fix(gamification): dedup badge unlock via user_badges so events don't re-fire every request (#3472) (#3565) Integrated into release/v3.8.20 * fix(routing): pass through 'auto' keyword on codex /v1/responses instead of rewriting to codex/auto (#3509) (#3566) Integrated into release/v3.8.20 * fix(cli-tools): normalize apiKey null in guide-settings schema so cloud-mode config saves (#3552) (#3567) Integrated into release/v3.8.20 * fix(catalog): reclassify PublicAI from keyless to one-time-initial (requires API key) (#3558) (#3568) Integrated into release/v3.8.20 * fix(gemini-web): surface missing Playwright browser as actionable 503 + cooldown hint, not a retryable 500 loop (#3516) (#3570) Integrated into release/v3.8.20 * fix(security): sanitize raw err.message in web executors + embeddings/search response bodies (Rule #12) (#3494, #3495) (#3573) Integrated into release/v3.8.20 * fix(dashboard): point CustomHostsManager + FeatureFlagsGrid at real routes (#3486, #3487) (#3574) Integrated into release/v3.8.20 * chore(providers): remove dead krutrim entry (#3483) + docs(api): fix agent-bridge per-agent state route (#3489) (#3575) Integrated into release/v3.8.20 * docs(api): correct API_REFERENCE.md paths for skills/plugins/admin/cache/acp/system-info (#3497) (#3577) Integrated into release/v3.8.20 * fix(proxy): drive SOCKS5 UI option from runtime ENABLE_SOCKS5_PROXY, not build-time NEXT_PUBLIC (#3508) (#3579) Integrated into release/v3.8.20 * fix(playground): filter playground models by node prefix so custom-endpoint models appear (#3505) (#3581) Integrated into release/v3.8.20 * fix(usage): show an informative message instead of a blank Kiro quota card when no usage breakdown (#3506) (#3582) Integrated into release/v3.8.20 * docs(changelog): add the #3506 Kiro quota entry (missed in #3582 due to a stale-base CHANGELOG anchor) (#3583) Integrated into release/v3.8.20 * fix(auto-update): use stable PROJECT_ROOT walker, not frozen process.cwd() (#3561) Integrated into release/v3.8.20. Auto-update PROJECT_ROOT now uses a stable __dirname-anchored upward walker instead of the no-op process.cwd() resolver. * fix: address PR #3518 review comments (lifecycle hooks, regex, indentation, route params) (#3562) Integrated into release/v3.8.20. Addresses #3518 review: regex literals, logs/[id] route params (Next 16), indentation, and wires plugin lifecycle hooks (onInstall/onActivate/onDeactivate/onUninstall) in the loader so manager.ts can register them. Adds Rule #18 regression test. * docs(changelog): credit @ViFigueiredo (#3423) for PROJECT_ROOT + log #3561/#3562 (v3.8.20) * fix: openai to gemini incorrectly translates historical tool calls into text (#3569) Integrated into release/v3.8.20. Standard Gemini direct path now maps historical tool calls to native functionCall/functionResponse parts (signaturelessToolCallMode: native) instead of inert text — validated against the real Gemini API (gemini-2.5-flash returns 200 for signatureless native functionCall, even with tools+thinking; Hard Rule #18). Eliminates the text-serialization leak. Antigravity/CLI sentinel path (#3560) untouched. * docs(changelog)+test: reconcile standard-Gemini native mode (#3569) — update round-2 rationale comment + log VPS validation * docs(changelog): reconcile v3.8.20 — add 9 missing bullets + move [Unreleased] to versioned section * docs(changelog): complete v3.8.20 reconciliation — 27 bullets, 11 contributors --------- Co-authored-by: Alexander Averyanov <alex@averyan.ru> Co-authored-by: Hakan Kurşun <bykamaka@gmail.com> Co-authored-by: Wilson <pedbookmed@gmail.com> Co-authored-by: Randi <55005611+rdself@users.noreply.github.com> Co-authored-by: Giorgos Giakoumettis <giorgos@yiakoumettis.gr> Co-authored-by: PizzaV <103120356+pizzav-xyz@users.noreply.github.com> Co-authored-by: Paijo <14921983+oyi77@users.noreply.github.com> Co-authored-by: Markus Hartung <mail@hartmark.se>
420 lines
14 KiB
TypeScript
420 lines
14 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
|
|
const autoUpdate = await import("../../src/lib/system/autoUpdate.ts");
|
|
|
|
test("auto update config normalizes env values and local source installs to source mode", () => {
|
|
const config = autoUpdate.getAutoUpdateConfig({
|
|
DATA_DIR: "/tmp/omniroute-data",
|
|
AUTO_UPDATE_MODE: "npm",
|
|
AUTO_UPDATE_REPO_DIR: "/workspace/custom-omniroute",
|
|
AUTO_UPDATE_COMPOSE_FILE: "/workspace/custom-omniroute/compose.yml",
|
|
AUTO_UPDATE_COMPOSE_PROFILE: "desktop",
|
|
AUTO_UPDATE_SERVICE: "omniroute-desktop",
|
|
AUTO_UPDATE_GIT_REMOTE: "upstream",
|
|
AUTO_UPDATE_PATCH_COMMITS: "abc123, def456 ghi789",
|
|
AUTO_UPDATE_LOG_PATH: "/tmp/omniroute-data/auto-update.log",
|
|
});
|
|
|
|
assert.equal(config.mode, "source");
|
|
assert.equal(config.repoDir, "/workspace/custom-omniroute");
|
|
assert.equal(config.composeFile, "/workspace/custom-omniroute/compose.yml");
|
|
assert.equal(config.composeProfile, "desktop");
|
|
assert.equal(config.composeService, "omniroute-desktop");
|
|
assert.equal(config.gitRemote, "upstream");
|
|
assert.deepEqual(config.patchCommits, ["abc123", "def456", "ghi789"]);
|
|
assert.equal(config.logPath, "/tmp/omniroute-data/auto-update.log");
|
|
});
|
|
|
|
test("detectComposeCommand prefers docker compose and falls back to docker-compose", async () => {
|
|
const dockerCompose = await autoUpdate.detectComposeCommand(async (command, args) => {
|
|
if (command === "docker" && args[0] === "compose") {
|
|
return { stdout: "Docker Compose version v2", stderr: "" };
|
|
}
|
|
throw new Error("unexpected");
|
|
});
|
|
assert.equal(dockerCompose, "docker compose");
|
|
|
|
const dockerComposeLegacy = await autoUpdate.detectComposeCommand(async (command, args) => {
|
|
if (command === "docker") throw new Error("missing");
|
|
if (command === "docker-compose" && args[0] === "version") {
|
|
return { stdout: "docker-compose 1.29", stderr: "" };
|
|
}
|
|
throw new Error("unexpected");
|
|
});
|
|
assert.equal(dockerComposeLegacy, "docker-compose");
|
|
|
|
const none = await autoUpdate.detectComposeCommand(async () => {
|
|
throw new Error("missing");
|
|
});
|
|
assert.equal(none, null);
|
|
});
|
|
|
|
test("validateAutoUpdateRuntime covers source, docker preconditions and successful docker runtime", async () => {
|
|
const sourceValidation = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "source",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async (command, args) => {
|
|
if (command === "git" && args[0] === "--version") {
|
|
return { stdout: "git version 2.0", stderr: "" };
|
|
}
|
|
throw new Error(`unexpected: ${command}`);
|
|
},
|
|
async () => true
|
|
);
|
|
|
|
assert.deepEqual(sourceValidation, {
|
|
supported: true,
|
|
reason: null,
|
|
composeCommand: null,
|
|
});
|
|
|
|
const sourceMissingGitRepo = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "source",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async () => ({ stdout: "git version 2.0", stderr: "" }),
|
|
async () => false
|
|
);
|
|
assert.equal(sourceMissingGitRepo.supported, false);
|
|
assert.match(sourceMissingGitRepo.reason, /Not a git repository/);
|
|
|
|
const sourceMissingGit = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "source",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async () => {
|
|
throw new Error("git missing");
|
|
},
|
|
async () => true
|
|
);
|
|
assert.equal(sourceMissingGit.supported, false);
|
|
assert.match(sourceMissingGit.reason, /git is not available/);
|
|
|
|
const missingRepo = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "docker-compose",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async () => ({ stdout: "", stderr: "" }),
|
|
async (targetPath) => targetPath !== "/repo"
|
|
);
|
|
assert.equal(missingRepo.supported, false);
|
|
assert.match(missingRepo.reason, /Repository directory not found/);
|
|
|
|
const missingComposeFile = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "docker-compose",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async () => ({ stdout: "", stderr: "" }),
|
|
async (targetPath) => targetPath === "/repo"
|
|
);
|
|
assert.equal(missingComposeFile.supported, false);
|
|
assert.match(missingComposeFile.reason, /Compose file not found/);
|
|
|
|
const missingGit = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "docker-compose",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async (command) => {
|
|
if (command === "git") throw new Error("git missing");
|
|
return { stdout: "", stderr: "" };
|
|
},
|
|
async () => true
|
|
);
|
|
assert.equal(missingGit.supported, false);
|
|
assert.match(missingGit.reason, /git is not available/);
|
|
|
|
const missingComposeCommand = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "docker-compose",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async (command) => {
|
|
if (command === "git") return { stdout: "git version 2", stderr: "" };
|
|
throw new Error("compose missing");
|
|
},
|
|
async () => true
|
|
);
|
|
assert.equal(missingComposeCommand.supported, false);
|
|
assert.match(missingComposeCommand.reason, /Neither docker compose nor docker-compose/);
|
|
|
|
const supported = await autoUpdate.validateAutoUpdateRuntime(
|
|
{
|
|
mode: "docker-compose",
|
|
repoDir: "/repo",
|
|
composeFile: "/repo/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: [],
|
|
logPath: "/tmp/log",
|
|
},
|
|
async (command, args) => {
|
|
if (command === "git" && args[0] === "--version") {
|
|
return { stdout: "git version 2.0", stderr: "" };
|
|
}
|
|
if (command === "docker" && args[0] === "compose") {
|
|
return { stdout: "Docker Compose version v2", stderr: "" };
|
|
}
|
|
throw new Error(`unexpected: ${command}`);
|
|
},
|
|
async () => true
|
|
);
|
|
assert.deepEqual(supported, {
|
|
supported: true,
|
|
reason: null,
|
|
composeCommand: "docker compose",
|
|
});
|
|
});
|
|
|
|
test("ensureGitTagExists verifies refs/tags paths and throws a clear error when missing", async () => {
|
|
const calls = [];
|
|
await autoUpdate.ensureGitTagExists("v3.6.0", async (command, args, options) => {
|
|
calls.push({ command, args, options });
|
|
return { stdout: "deadbeef", stderr: "" };
|
|
});
|
|
|
|
assert.deepEqual(calls, [
|
|
{
|
|
command: "git",
|
|
args: ["rev-parse", "-q", "--verify", "refs/tags/v3.6.0"],
|
|
options: {
|
|
timeout: 10_000,
|
|
cwd: process.cwd(),
|
|
},
|
|
},
|
|
]);
|
|
|
|
await assert.rejects(
|
|
autoUpdate.ensureGitTagExists("v9.9.9", async () => {
|
|
throw new Error("missing tag");
|
|
}),
|
|
/Git tag not found: v9\.9\.9/
|
|
);
|
|
});
|
|
|
|
test("auto update script builders generate npm, source, and docker-compose scripts with quoting and patch commits", () => {
|
|
const npmScript = autoUpdate.buildNpmUpdateScript("3.6.0");
|
|
assert.match(npmScript, /npm install -g omniroute@3.6.0/);
|
|
assert.match(npmScript, /pm2 restart omniroute \|\| true/);
|
|
assert.match(npmScript, /Successfully updated to v3.6.0/);
|
|
|
|
const sourceScript = autoUpdate.buildSourceUpdateScript("3.6.0", "upstream");
|
|
assert.match(sourceScript, /git fetch --tags 'upstream'/);
|
|
assert.match(sourceScript, /git stash --include-untracked/);
|
|
assert.match(sourceScript, /node scripts\/dev\/sync-env\.mjs 2>\/dev\/null \|\| true/);
|
|
assert.match(sourceScript, /Successfully updated to v3\.6\.0/);
|
|
|
|
const dockerScript = autoUpdate.buildDockerComposeUpdateScript({
|
|
latest: "3.6.0",
|
|
composeCommand: "docker-compose",
|
|
config: {
|
|
mode: "docker-compose",
|
|
repoDir: "/workspace/with spaces",
|
|
composeFile: "/workspace/with spaces/docker-compose.yml",
|
|
composeProfile: "cli",
|
|
composeService: "omniroute-cli",
|
|
gitRemote: "origin",
|
|
patchCommits: ["abc123", "feature'fix"],
|
|
logPath: "/tmp/logs/auto-update.log",
|
|
},
|
|
});
|
|
|
|
assert.match(dockerScript, /TARGET_TAG='v3\.6\.0'/);
|
|
assert.match(dockerScript, /git cherry-pick --keep-redundant-commits 'abc123' 'feature'"'"'fix'/);
|
|
assert.match(dockerScript, /docker-compose -f "\$COMPOSE_FILE" up -d --build "\$SERVICE"/);
|
|
assert.match(dockerScript, /Successfully switched to v3\.6\.0 via docker-compose/);
|
|
});
|
|
|
|
test("launchAutoUpdate returns validation failures and starts detached update scripts when runtime is supported", async () => {
|
|
const unsupported = await autoUpdate.launchAutoUpdate({
|
|
latest: "3.6.0",
|
|
env: {
|
|
AUTO_UPDATE_MODE: "source",
|
|
AUTO_UPDATE_LOG_PATH: "/tmp/auto-update-source.log",
|
|
},
|
|
existsImpl: async () => false,
|
|
});
|
|
|
|
assert.equal(unsupported.started, false);
|
|
assert.equal(unsupported.channel, "source");
|
|
assert.match(unsupported.error, /Not a git repository/);
|
|
|
|
const sourceSpawnCalls = [];
|
|
const sourceStarted = await autoUpdate.launchAutoUpdate({
|
|
latest: "3.6.0",
|
|
env: {
|
|
AUTO_UPDATE_MODE: "source",
|
|
AUTO_UPDATE_GIT_REMOTE: "upstream",
|
|
AUTO_UPDATE_LOG_PATH: "/tmp/auto-update-source.log",
|
|
},
|
|
execFileImpl: async (command, args) => {
|
|
if (command === "git" && args[0] === "--version") {
|
|
return { stdout: "git version 2.0", stderr: "" };
|
|
}
|
|
throw new Error(`unexpected exec: ${command}`);
|
|
},
|
|
existsImpl: async () => true,
|
|
spawnImpl: (command, args, options) => {
|
|
sourceSpawnCalls.push({ command, args, options, unrefCalled: false });
|
|
return {
|
|
unref() {
|
|
sourceSpawnCalls[0].unrefCalled = true;
|
|
},
|
|
};
|
|
},
|
|
});
|
|
|
|
assert.equal(sourceStarted.started, true);
|
|
assert.equal(sourceStarted.channel, "source");
|
|
assert.equal(sourceStarted.composeCommand, null);
|
|
assert.equal(sourceSpawnCalls.length, 1);
|
|
assert.match(sourceSpawnCalls[0].args[1], /git fetch --tags 'upstream'/);
|
|
assert.match(sourceSpawnCalls[0].args[1], /npm run build/);
|
|
assert.equal(sourceSpawnCalls[0].unrefCalled, true);
|
|
|
|
const tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-autoupdate-"));
|
|
const repoDir = path.join(tempRoot, "repo");
|
|
const composeFile = path.join(repoDir, "docker-compose.yml");
|
|
const logPath = path.join(tempRoot, "logs", "auto-update.log");
|
|
fs.mkdirSync(repoDir, { recursive: true });
|
|
fs.writeFileSync(composeFile, "services: {}\n");
|
|
|
|
const execCalls = [];
|
|
const spawnCalls = [];
|
|
const started = await autoUpdate.launchAutoUpdate({
|
|
latest: "3.6.0",
|
|
env: {
|
|
AUTO_UPDATE_MODE: "docker-compose",
|
|
AUTO_UPDATE_REPO_DIR: repoDir,
|
|
AUTO_UPDATE_COMPOSE_FILE: composeFile,
|
|
AUTO_UPDATE_COMPOSE_PROFILE: "cli",
|
|
AUTO_UPDATE_SERVICE: "omniroute-cli",
|
|
AUTO_UPDATE_GIT_REMOTE: "origin",
|
|
AUTO_UPDATE_PATCH_COMMITS: "abc123",
|
|
AUTO_UPDATE_LOG_PATH: logPath,
|
|
},
|
|
execFileImpl: async (command, args) => {
|
|
execCalls.push([command, args]);
|
|
if (command === "git" && args[0] === "--version") {
|
|
return { stdout: "git version 2.0", stderr: "" };
|
|
}
|
|
if (command === "docker" && args[0] === "compose") {
|
|
return { stdout: "Docker Compose version v2", stderr: "" };
|
|
}
|
|
throw new Error(`unexpected exec: ${command}`);
|
|
},
|
|
spawnImpl: (command, args, options) => {
|
|
spawnCalls.push({ command, args, options, unrefCalled: false });
|
|
return {
|
|
unref() {
|
|
spawnCalls[0].unrefCalled = true;
|
|
},
|
|
};
|
|
},
|
|
existsImpl: async (targetPath) =>
|
|
targetPath === repoDir || targetPath === composeFile || targetPath === "/var/run/docker.sock",
|
|
});
|
|
|
|
try {
|
|
assert.equal(started.started, true);
|
|
assert.equal(started.channel, "docker-compose");
|
|
assert.equal(started.composeCommand, "docker compose");
|
|
assert.equal(started.logPath, logPath);
|
|
assert.equal(
|
|
execCalls.some(([command]) => command === "git"),
|
|
true
|
|
);
|
|
assert.equal(
|
|
execCalls.some(([command]) => command === "docker"),
|
|
true
|
|
);
|
|
assert.equal(spawnCalls.length, 1);
|
|
assert.equal(spawnCalls[0].command, "sh");
|
|
assert.deepEqual(spawnCalls[0].args.slice(0, 2), ["-lc", spawnCalls[0].args[1]]);
|
|
assert.equal(spawnCalls[0].options.detached, true);
|
|
assert.equal(spawnCalls[0].options.stdio[0], "ignore");
|
|
assert.equal(typeof spawnCalls[0].options.stdio[1], "number");
|
|
assert.equal(typeof spawnCalls[0].options.stdio[2], "number");
|
|
assert.equal(spawnCalls[0].unrefCalled, true);
|
|
assert.match(spawnCalls[0].args[1], /git cherry-pick --keep-redundant-commits 'abc123'/);
|
|
} finally {
|
|
fs.rmSync(tempRoot, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("resolveProjectRoot walks up from start dir to nearest package.json or .git", () => {
|
|
const tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-root-"));
|
|
const subDir = path.join(tempRoot, "sub", "deep");
|
|
fs.mkdirSync(subDir, { recursive: true });
|
|
fs.writeFileSync(path.join(tempRoot, "package.json"), "{}");
|
|
|
|
try {
|
|
// Walking up from a deep subdir that does not have markers must find the real root.
|
|
assert.equal(autoUpdate.resolveProjectRoot("/fallback", subDir), tempRoot);
|
|
|
|
// Walking up from a directory that DOES have package.json returns that directory.
|
|
assert.equal(autoUpdate.resolveProjectRoot("/fallback", tempRoot), tempRoot);
|
|
|
|
// Walking up from /proc/1 — a directory with no parent markers — must return
|
|
// a real path (either found via walking or the fallback).
|
|
const lonely = "/proc/1";
|
|
const lonelyResult = autoUpdate.resolveProjectRoot("/my-fallback", lonely);
|
|
assert.equal(lonelyResult, "/my-fallback");
|
|
} finally {
|
|
fs.rmSync(tempRoot, { recursive: true, force: true });
|
|
}
|
|
});
|