mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-05 02:30:26 +08:00
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>
This commit is contained in:
4
codeagent-wrapper/.gitignore
vendored
4
codeagent-wrapper/.gitignore
vendored
@@ -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
|
||||||
|
|||||||
7
codeagent-wrapper/cmd/codeagent-wrapper/main.go
Normal file
7
codeagent-wrapper/cmd/codeagent-wrapper/main.go
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import app "codeagent-wrapper/internal/app"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
app.Run()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user