antenna-fyi 1.2.36 → 1.2.37
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/lib/cli.js +3 -1
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -542,7 +542,9 @@ export async function handleWatch(f) {
|
|
|
542
542
|
// Push to ALL available frameworks, not just one
|
|
543
543
|
const pushMethods = new Set();
|
|
544
544
|
if (f.push) {
|
|
545
|
-
|
|
545
|
+
// Support both --push hermes,openclaw and --push hermes --push openclaw
|
|
546
|
+
const raw = Array.isArray(f.push) ? f.push : [f.push];
|
|
547
|
+
raw.forEach(v => v.split(",").forEach(m => pushMethods.add(m.trim())));
|
|
546
548
|
} else {
|
|
547
549
|
try {
|
|
548
550
|
execSync("which openclaw", { stdio: "pipe" });
|