summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/minio/go-homedir/dir_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/minio/go-homedir/dir_windows.go')
-rw-r--r--vendor/github.com/minio/go-homedir/dir_windows.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/github.com/minio/go-homedir/dir_windows.go b/vendor/github.com/minio/go-homedir/dir_windows.go
deleted file mode 100644
index e1ac9cf77..000000000
--- a/vendor/github.com/minio/go-homedir/dir_windows.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package homedir
-
-import (
- "errors"
- "os"
-)
-
-// dir returns the homedir of current user for MS Windows OS.
-func dir() (string, error) {
- // First prefer the HOME environmental variable
- if home := os.Getenv("HOME"); home != "" {
- return home, nil
- }
- drive := os.Getenv("HOMEDRIVE")
- path := os.Getenv("HOMEPATH")
- home := drive + path
- if drive == "" || path == "" {
- home = os.Getenv("USERPROFILE")
- }
- if home == "" {
- return "", errors.New("HOMEDRIVE, HOMEPATH, and USERPROFILE are blank")
- }
-
- return home, nil
-}