()
| 96 | } |
| 97 | |
| 98 | func utilityDataPath() (string, error) { |
| 99 | path := xdg.DataSubpath("devbox/util") |
| 100 | return path, errors.WithStack(os.MkdirAll(path, 0o755)) |
| 101 | } |
| 102 | |
| 103 | func utilityNixProfilePath() (string, error) { |
| 104 | path, err := utilityDataPath() |
no test coverage detected