Skip to content

Commit 4ae9477

Browse files
committed
fix(fullrepo): keep state manifest out of agent trees
1 parent 2d3058d commit 4ae9477

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

plugins/rldyour-flow/scripts/fullrepo_sync.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
".serena/research/**",
5555
".serena/newproj/**",
5656
".serena/deploy/**",
57+
)
58+
59+
FULLREPO_METADATA_PATTERNS = (
5760
FULLREPO_STATE_PATH,
5861
)
5962

@@ -197,6 +200,8 @@ def exclude_block() -> str:
197200
lines = [EXCLUDE_BEGIN]
198201
for pattern in AGENT_ONLY_PATTERNS:
199202
lines.append("/" + pattern)
203+
for pattern in FULLREPO_METADATA_PATTERNS:
204+
lines.append("/" + pattern)
200205
for pattern in RUNTIME_EXCLUDE_PATTERNS:
201206
lines.append("!/" + pattern)
202207
lines.append(EXCLUDE_END)

0 commit comments

Comments
 (0)