mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 09:21:35 +07:00
fix(ci): refresh plugin sdk baseline and formatting
This commit is contained in:
@@ -202,18 +202,14 @@ function installPluginRuntimeDeps(pluginDir, pluginId) {
|
||||
"--package-lock=false",
|
||||
],
|
||||
});
|
||||
const result = spawnSync(
|
||||
npmRunner.command,
|
||||
npmRunner.args,
|
||||
{
|
||||
cwd: pluginDir,
|
||||
encoding: "utf8",
|
||||
env: npmRunner.env,
|
||||
stdio: "pipe",
|
||||
shell: npmRunner.shell,
|
||||
windowsVerbatimArguments: npmRunner.windowsVerbatimArguments,
|
||||
},
|
||||
);
|
||||
const result = spawnSync(npmRunner.command, npmRunner.args, {
|
||||
cwd: pluginDir,
|
||||
encoding: "utf8",
|
||||
env: npmRunner.env,
|
||||
stdio: "pipe",
|
||||
shell: npmRunner.shell,
|
||||
windowsVerbatimArguments: npmRunner.windowsVerbatimArguments,
|
||||
});
|
||||
if (result.status === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user