()
| 52 | } |
| 53 | |
| 54 | func globalProcessComposeJSONPath() (string, error) { |
| 55 | path := xdg.DataSubpath(filepath.Join("devbox", "global")) |
| 56 | return filepath.Join(path, "process-compose.json"), errors.WithStack(os.MkdirAll(path, 0o755)) |
| 57 | } |
| 58 | |
| 59 | func readGlobalProcessComposeJSON(file *os.File) *globalProcessComposeConfig { |
| 60 | config := newGlobalProcessComposeConfig() |
no test coverage detected