mirror of
https://github.com/obra/superpowers.git
synced 2026-07-02 07:29:06 +08:00
Strip hooks from Codex portal package
This commit is contained in:
@@ -243,7 +243,9 @@ VERSION="$(jq -r '.version // empty' "$STAGE/.codex-plugin/plugin.json")"
|
|||||||
[[ -n "$VERSION" ]] || die "could not read version from .codex-plugin/plugin.json"
|
[[ -n "$VERSION" ]] || die "could not read version from .codex-plugin/plugin.json"
|
||||||
|
|
||||||
if jq -e 'has("hooks")' "$STAGE/.codex-plugin/plugin.json" >/dev/null; then
|
if jq -e 'has("hooks")' "$STAGE/.codex-plugin/plugin.json" >/dev/null; then
|
||||||
die "Codex manifest must not declare hooks for the portal package"
|
manifest_tmp="$WORK_DIR/plugin-manifest.json"
|
||||||
|
jq 'del(.hooks)' "$STAGE/.codex-plugin/plugin.json" >"$manifest_tmp"
|
||||||
|
mv "$manifest_tmp" "$STAGE/.codex-plugin/plugin.json"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$OUTPUT" ]]; then
|
if [[ -z "$OUTPUT" ]]; then
|
||||||
|
|||||||
@@ -140,6 +140,9 @@ extracted="$TEST_ROOT/extracted"
|
|||||||
tar_extracted="$TEST_ROOT/tar-extracted"
|
tar_extracted="$TEST_ROOT/tar-extracted"
|
||||||
write_metadata_fixture "$metadata_source"
|
write_metadata_fixture "$metadata_source"
|
||||||
|
|
||||||
|
source_hooks="$(python3 -c 'import json; print(json.load(open("'"$REPO_ROOT"'/.codex-plugin/plugin.json")).get("hooks"))')"
|
||||||
|
assert_equals "$source_hooks" "{}" "source Codex manifest suppresses local hook auto-discovery"
|
||||||
|
|
||||||
if output="$("$SCRIPT_UNDER_TEST" --allow-dirty --metadata-source "$metadata_source" --output "$archive" 2>&1)"; then
|
if output="$("$SCRIPT_UNDER_TEST" --allow-dirty --metadata-source "$metadata_source" --output "$archive" 2>&1)"; then
|
||||||
pass "package script exits successfully"
|
pass "package script exits successfully"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user