(raw string)
| 909 | } |
| 910 | |
| 911 | func resolveOptionalConfigWorkspaceRoot(raw string) (string, error) { |
| 912 | if strings.TrimSpace(raw) == "" { |
| 913 | return "", nil |
| 914 | } |
| 915 | return aghconfig.ResolvePath(raw) |
| 916 | } |
| 917 | |
| 918 | func scopeForWorkspace(workspaceRoot string) string { |
| 919 | if strings.TrimSpace(workspaceRoot) == "" { |
no test coverage detected