Kaynağa Gözat

fix(sync-to-codex-plugin): exclude /.pi/ so the pi extension doesn't leak into the Codex plugin

The .pi/ directory holds the pi-harness extension (.pi/extensions/superpowers.ts),
which is tracked (not git-ignored), so the git-ignored-path exclusion helpers
never caught it. It was also missing from the static EXCLUDES list alongside the
other harness dotdirs (.opencode, .cursor-plugin, .claude-plugin), so a sync
would rsync pi's files into the Codex plugin distribution. Add /.pi/ to EXCLUDES.
Jesse Vincent 3 ay önce
ebeveyn
işleme
e63e44bedf
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      scripts/sync-to-codex-plugin.sh

+ 1 - 0
scripts/sync-to-codex-plugin.sh

@@ -53,6 +53,7 @@ EXCLUDES=(
   "/.github/"
   "/.gitignore"
   "/.opencode/"
+  "/.pi/"
   "/.version-bump.json"
   "/.worktrees/"
   ".DS_Store"