2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-28 22:49:01 +00:00

cache: Correctly return dir for Windows/darwin

This commit is contained in:
Alexander Neumann 2017-11-20 06:11:18 +01:00
parent fe1f151ae1
commit ea593fca1b

10
internal/cache/dir.go vendored
View File

@ -56,10 +56,16 @@ func DefaultDir() (cachedir string, err error) {
cachedir, err = darwinCacheDir() cachedir, err = darwinCacheDir()
case "windows": case "windows":
cachedir, err = windowsCacheDir() cachedir, err = windowsCacheDir()
default:
// Default to XDG for Linux and any other OSes.
cachedir, err = xdgCacheDir()
} }
// Default to XDG for Linux and any other OSes. if err != nil {
return xdgCacheDir() return "", err
}
return cachedir, nil
} }
func mkdirCacheDir(cachedir string) error { func mkdirCacheDir(cachedir string) error {