mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-30 14:51:44 +00:00
refactor: rename clawdbot to moltbot with legacy compat
This commit is contained in:
@@ -40,7 +40,7 @@ describe("docker-setup.sh", () => {
|
||||
return;
|
||||
}
|
||||
|
||||
const rootDir = await mkdtemp(join(tmpdir(), "clawdbot-docker-setup-"));
|
||||
const rootDir = await mkdtemp(join(tmpdir(), "moltbot-docker-setup-"));
|
||||
const scriptPath = join(rootDir, "docker-setup.sh");
|
||||
const dockerfilePath = join(rootDir, "Dockerfile");
|
||||
const composePath = join(rootDir, "docker-compose.yml");
|
||||
@@ -52,7 +52,7 @@ describe("docker-setup.sh", () => {
|
||||
await writeFile(dockerfilePath, "FROM scratch\n");
|
||||
await writeFile(
|
||||
composePath,
|
||||
"services:\n clawdbot-gateway:\n image: noop\n clawdbot-cli:\n image: noop\n",
|
||||
"services:\n moltbot-gateway:\n image: noop\n moltbot-cli:\n image: noop\n",
|
||||
);
|
||||
await writeDockerStub(binDir, logPath);
|
||||
|
||||
@@ -90,7 +90,7 @@ describe("docker-setup.sh", () => {
|
||||
return;
|
||||
}
|
||||
|
||||
const rootDir = await mkdtemp(join(tmpdir(), "clawdbot-docker-setup-"));
|
||||
const rootDir = await mkdtemp(join(tmpdir(), "moltbot-docker-setup-"));
|
||||
const scriptPath = join(rootDir, "docker-setup.sh");
|
||||
const dockerfilePath = join(rootDir, "Dockerfile");
|
||||
const composePath = join(rootDir, "docker-compose.yml");
|
||||
@@ -102,7 +102,7 @@ describe("docker-setup.sh", () => {
|
||||
await writeFile(dockerfilePath, "FROM scratch\n");
|
||||
await writeFile(
|
||||
composePath,
|
||||
"services:\n clawdbot-gateway:\n image: noop\n clawdbot-cli:\n image: noop\n",
|
||||
"services:\n moltbot-gateway:\n image: noop\n moltbot-cli:\n image: noop\n",
|
||||
);
|
||||
await writeDockerStub(binDir, logPath);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user