Skip to content

Commit 4ad1aee

Browse files
tryfix
1 parent 51b110d commit 4ad1aee

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/lib/control-plane.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function provisionInstance(
3434
slug: instance.slug,
3535
proxyBaseUrl,
3636
openclawConfig: JSON.stringify(openclawConfig, null, 2),
37-
openclawVersion: process.env.OPENCLAW_VERSION ?? 'latest',
37+
openclawVersion: process.env.OPENCLAW_VERSION ?? '2026.3.13',
3838
gatewayToken,
3939
domain: INSTANCE_DOMAIN,
4040
})

src/lib/hetzner/cloud-init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ runcmd:
156156
- mkdir -p /home/openclaw/.npm /home/openclaw/workspace
157157
- chown -R openclaw:openclaw /home/openclaw
158158
159-
# OpenClaw (native install as openclaw user)
160-
- su - openclaw -c 'curl -fsSL https://openclaw.ai/install.sh | bash'
159+
# OpenClaw (native install as openclaw user, pinned version for UI asset compatibility)
160+
- su - openclaw -c 'npm install -g openclaw@${params.openclawVersion}'
161161
162162
# Add npm-global bin to PATH for both login shells (.profile) and interactive shells (.bashrc)
163163
- su - openclaw -c 'echo "export PATH=\\$HOME/.npm-global/bin:\\$PATH" >> ~/.profile && echo "export PATH=\\$HOME/.npm-global/bin:\\$PATH" >> ~/.bashrc'

0 commit comments

Comments
 (0)