Compare commits

..

1 Commits

Author SHA1 Message Date
cexll
c1d3a0a07a fix: correct gitignore to not exclude cmd/codeagent-wrapper
The pattern 'codeagent-wrapper' was matching cmd/codeagent-wrapper/
directory. Changed to '/codeagent-wrapper' to only match root binary.

Generated with SWE-Agent.ai

Co-Authored-By: SWE-Agent.ai <noreply@swe-agent.ai>
2026-01-25 18:12:40 +08:00
2 changed files with 9 additions and 2 deletions

View File

@@ -2,8 +2,8 @@
bin/ bin/
codeagent codeagent
codeagent.exe codeagent.exe
codeagent-wrapper /codeagent-wrapper
codeagent-wrapper.exe /codeagent-wrapper.exe
*.test *.test
# Coverage reports # Coverage reports

View File

@@ -0,0 +1,7 @@
package main
import app "codeagent-wrapper/internal/app"
func main() {
app.Run()
}