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 "" }