mirror of
https://github.com/restic/restic.git
synced 2025-08-12 16:17:41 +00:00
Fix error message on Windows
This commit is contained in:
2
internal/cache/dir.go
vendored
2
internal/cache/dir.go
vendored
@@ -32,7 +32,7 @@ func xdgCacheDir() (string, error) {
|
||||
func windowsCacheDir() (string, error) {
|
||||
appdata := os.Getenv("LOCALAPPDATA")
|
||||
if appdata == "" {
|
||||
return "", errors.New("unable to locate cache directory (APPDATA unset)")
|
||||
return "", errors.New("unable to locate cache directory (LOCALAPPDATA unset)")
|
||||
}
|
||||
return filepath.Join(appdata, "restic"), nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user