@mutmutco/codex-plugin 4.3.38 → 4.3.39

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mmi",
3
- "version": "4.3.38",
3
+ "version": "4.3.39",
4
4
  "mmiCompat": "4.x",
5
5
  "description": "MMI workflow skills and org gates delivery.",
6
6
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/codex-plugin",
3
- "version": "4.3.38",
3
+ "version": "4.3.39",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -80,7 +80,8 @@ jobs:
80
80
  trap 'rm -f "$offenders"' EXIT
81
81
  {
82
82
  git grep --cached -Il $'\r' -- '*.sh' || true
83
- git grep --cached -Il '^#!' | while IFS= read -r path; do
83
+ # #6481: git grep exits 1 on zero matches; under pipefail a repo with no shebang file died here.
84
+ { git grep --cached -Il '^#!' || true; } | while IFS= read -r path; do
84
85
  case "$path" in
85
86
  *.sh) ;;
86
87
  *) git grep --cached -Il $'\r' -- "$path" || true ;;