()
| 63 | } |
| 64 | |
| 65 | func (s spec) resolveUserPaths() []string { |
| 66 | resolved := make([]string, 0, len(s.userPaths)) |
| 67 | for _, p := range s.userPaths { |
| 68 | resolved = append(resolved, pathutil.Expand(p)) |
| 69 | } |
| 70 | return resolved |
| 71 | } |
| 72 | |
| 73 | func (s spec) resolveProjectPath() string { |
| 74 | if s.projectPath == "" { |