@alfe.ai/integrations 0.0.18 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1422,11 +1422,13 @@ var OpenClawApplier = class {
|
|
|
1422
1422
|
await this.ensurePluginsAllow(pkg);
|
|
1423
1423
|
if (!this.isPluginInstalled(pkg)) {
|
|
1424
1424
|
try {
|
|
1425
|
-
|
|
1425
|
+
const args = [
|
|
1426
1426
|
"plugins",
|
|
1427
1427
|
"install",
|
|
1428
1428
|
pkg
|
|
1429
|
-
]
|
|
1429
|
+
];
|
|
1430
|
+
if (pkg.startsWith("@alfe.ai/")) args.push("--dangerously-force-unsafe-install");
|
|
1431
|
+
await execFileAsync("openclaw", args, { timeout: 6e4 });
|
|
1430
1432
|
} catch (err) {
|
|
1431
1433
|
await new Promise((r) => {
|
|
1432
1434
|
setTimeout(r, 500);
|
package/package.json
CHANGED