mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 13:10:43 +00:00
fix(plugins): satisfy setup cli fallback lint
This commit is contained in:
@@ -36,7 +36,7 @@ function resolveBundledSetupCliBackends(): SetupCliBackendRuntimeEntry[] {
|
||||
}
|
||||
bundledSetupCliBackendsCache = loadPluginRegistrySnapshot({ cache: true }).plugins.flatMap(
|
||||
(plugin) => {
|
||||
if (plugin.origin !== "bundled" || plugin.enabled === false) {
|
||||
if (plugin.origin !== "bundled" || !plugin.enabled) {
|
||||
return [];
|
||||
}
|
||||
return plugin.contributions.cliBackends.map(
|
||||
|
||||
Reference in New Issue
Block a user