fix: disable bundled plugins during Parallels update

This commit is contained in:
Peter Steinberger
2026-04-24 03:23:10 +01:00
parent 6926494f71
commit c41c212591
2 changed files with 10 additions and 4 deletions

View File

@@ -20,5 +20,10 @@ describe("parallels npm update smoke", () => {
expect(script).toContain('"feishu", "whatsapp"');
expect(script).toContain("Remove-FuturePluginEntries\n Stop-OpenClawGatewayProcesses");
expect(script).toContain("scrub_future_plugin_entries\nstop_openclaw_gateway_processes");
expect(script).toContain("$env:OPENCLAW_DISABLE_BUNDLED_PLUGINS = '1'");
expect(script).toContain(
"OPENCLAW_DISABLE_BUNDLED_PLUGINS=1 /opt/homebrew/bin/openclaw update",
);
expect(script).toContain("OPENCLAW_DISABLE_BUNDLED_PLUGINS=1 openclaw update");
});
});