(s string)
| 111 | } |
| 112 | |
| 113 | func mustParseAbsolute(s string) safepaths.Absolute { |
| 114 | t, err := safepaths.ParseAbsolute(s) |
| 115 | if err != nil { |
| 116 | panic(err) |
| 117 | } |
| 118 | return t |
| 119 | } |
| 120 | |
| 121 | func rootDir() string { |
| 122 | // Get the current working directory |
no test coverage detected