Based on https://github.com/adrg/xdg Licensed under MIT License (MIT) Copyright (c) 2014 Adrian-George Bostan
()
| 26 | // Copyright (c) 2014 Adrian-George Bostan <adrg@epistack.com> |
| 27 | |
| 28 | func osDependentCacheDir() (string, error) { |
| 29 | home, err := os.UserHomeDir() |
| 30 | if err != nil { |
| 31 | return "", err |
| 32 | } |
| 33 | return filepath.Join(home, "Library", "Caches", "docker-compose"), nil |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected