2015-07-31 06:50:11 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
2016-11-06 08:47:25 +00:00
|
|
|
import "os"
|
2015-07-31 06:50:11 +00:00
|
|
|
|
2016-11-24 09:37:11 +00:00
|
|
|
// CurrentUsername return current login OS user name
|
2015-07-31 06:50:11 +00:00
|
|
|
func CurrentUsername() string {
|
|
|
|
curUserName := os.Getenv("USER")
|
|
|
|
if len(curUserName) > 0 {
|
|
|
|
return curUserName
|
|
|
|
}
|
|
|
|
|
|
|
|
return os.Getenv("USERNAME")
|
|
|
|
}
|