1
0
mirror of https://github.com/minio/minio.git synced 2025-04-04 03:40:30 -04:00

pkg/user: Support 32bit darwin in user package.

This commit is contained in:
Harshavardhana 2016-02-08 01:13:53 -08:00
parent e79a73a3f5
commit 42fcb27308

@ -39,7 +39,8 @@ func Current() (*user.User, error) {
} }
return &user.User{Uid: "0", Gid: "0", Username: "root", Name: "root", HomeDir: wd}, nil return &user.User{Uid: "0", Gid: "0", Username: "root", Name: "root", HomeDir: wd}, nil
} }
if runtime.GOARCH == "386" && runtime.GOOS == "linux" { if runtime.GOARCH == "386" {
if runtime.GOOS == "linux" || runtime.GOOS == "darwin" {
return &user.User{ return &user.User{
Uid: strconv.Itoa(os.Getuid()), Uid: strconv.Itoa(os.Getuid()),
Gid: strconv.Itoa(os.Getgid()), Gid: strconv.Itoa(os.Getgid()),
@ -48,6 +49,7 @@ func Current() (*user.User, error) {
HomeDir: os.Getenv("HOME"), HomeDir: os.Getenv("HOME"),
}, nil }, nil
} }
}
user, e := user.Current() user, e := user.Current()
if e != nil { if e != nil {
return nil, e return nil, e