mirror of https://github.com/restic/restic.git
cache: Correctly return dir for Windows/darwin
This commit is contained in:
parent
fe1f151ae1
commit
ea593fca1b
|
@ -56,10 +56,16 @@ func DefaultDir() (cachedir string, err error) {
|
|||
cachedir, err = darwinCacheDir()
|
||||
case "windows":
|
||||
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.
|
||||
return xdgCacheDir()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
return cachedir, nil
|
||||
}
|
||||
|
||||
func mkdirCacheDir(cachedir string) error {
|
||||
|
|
Loading…
Reference in New Issue