fix: disable bundled plugins during Parallels update

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

View File

@@ -21,5 +21,10 @@ describe("parallels npm update smoke", () => {
expect(script).toContain("delete entries.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");
});
});