test(e2e): allow npm configured plugin installs · openclaw/openclaw@a1054fb
vincentkoc
·
2026-05-03
·
via Recent Commits to openclaw:main
File tree
scripts/e2e/lib/upgrade-survivor
| Original file line number | Diff line number | Diff line change |
|---|
@@ -336,10 +336,9 @@ assert_configured_plugin_installs_clawhub_attempted() {
|
336 | 336 | return 0 |
337 | 337 | fi |
338 | 338 | local requests_file="$ARTIFACT_ROOT/clawhub-not-found-requests.jsonl" |
339 | | -if ! grep -q '/api/v1/packages/%40openclaw%2Fmatrix' "$requests_file" 2>/dev/null; then |
340 | | -echo "configured plugin install scenario did not attempt ClawHub for @openclaw/matrix" >&2 |
341 | | - cat "$requests_file" >&2 2>/dev/null || true |
342 | | -return 1 |
| 339 | +# The install catalog may prefer npm; assertions.mjs validates the installed source. |
| 340 | +if grep -q '/api/v1/packages/%40openclaw%2Fmatrix' "$requests_file" 2>/dev/null; then |
| 341 | +echo "configured plugin install scenario attempted ClawHub for @openclaw/matrix" |
343 | 342 | fi |
344 | 343 | } |
345 | 344 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。