From dd31a27e7169abcd8fd955aab7595474d7ec9ed4 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 28 Apr 2026 16:30:58 -0700 Subject: [PATCH] fix(plugins): run gauntlet against built cli --- scripts/check-plugin-gateway-gauntlet.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-plugin-gateway-gauntlet.mjs b/scripts/check-plugin-gateway-gauntlet.mjs index 29b308af760..fe6c87f98eb 100644 --- a/scripts/check-plugin-gateway-gauntlet.mjs +++ b/scripts/check-plugin-gateway-gauntlet.mjs @@ -215,7 +215,7 @@ function pnpmCommand() { function openclawCommand(repoRoot, args) { return { command: process.execPath, - args: [path.join(repoRoot, "scripts", "run-node.mjs"), ...args], + args: [path.join(repoRoot, "dist", "entry.js"), ...args], }; } @@ -358,7 +358,7 @@ function runMeasuredCommand(params) { function runPluginLifecycle(params) { for (const plugin of params.plugins) { const commands = [ - ["install", ["install", plugin.dir, "--link", "--force"]], + ["install", ["install", plugin.dir, "--link"]], ["inspect", ["inspect", plugin.id, "--json"]], ["disable", ["disable", plugin.id]], ["enable", ["enable", plugin.id]],