(relativePath string)
| 269 | } |
| 270 | |
| 271 | func UserRelToAbsPath(relativePath string) string { |
| 272 | cwd, err := os.Getwd() |
| 273 | if err != nil { |
| 274 | return relativePath |
| 275 | } |
| 276 | return RelToAbsPath(relativePath, cwd) |
| 277 | } |
| 278 | |
| 279 | func PathRelativeToCWD(absPath string) string { |
| 280 | cwd, err := os.Getwd() |