Some checks failed
CI / check (push) Failing after 17m48s
- Remove 'index 0000000..1111111' lines that made patches appear as new files - Fix hunk line counts in several patches - Add missing leading spaces to blank context lines - Temporarily disable statusline optimization patch (needs regenerating) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
600 B
Diff
19 lines
600 B
Diff
diff --git a/internal/cmd/role.go b/internal/cmd/role.go
|
|
--- a/internal/cmd/role.go
|
|
+++ b/internal/cmd/role.go
|
|
@@ -326,11 +326,11 @@ func getRoleHome(role Role, rig, polecat, townRoot string) string {
|
|
if rig == "" || polecat == "" {
|
|
return ""
|
|
}
|
|
- return filepath.Join(townRoot, rig, "polecats", polecat, "rig")
|
|
+ return filepath.Join(townRoot, rig, "polecats", polecat)
|
|
case RoleCrew:
|
|
if rig == "" || polecat == "" {
|
|
return ""
|
|
}
|
|
- return filepath.Join(townRoot, rig, "crew", polecat, "rig")
|
|
+ return filepath.Join(townRoot, rig, "crew", polecat)
|
|
default:
|
|
return ""
|
|
}
|