2015-07-31 08:50:11 +02: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 09:47:25 +01:00
|
|
|
import "os"
|
2015-07-31 08:50:11 +02:00
|
|
|
|
2016-11-24 10:37:11 +01:00
|
|
|
// CurrentUsername return current login OS user name
|
2015-07-31 08:50:11 +02:00
|
|
|
func CurrentUsername() string {
|
|
|
|
curUserName := os.Getenv("USER")
|
|
|
|
if len(curUserName) > 0 {
|
|
|
|
return curUserName
|
|
|
|
}
|
|
|
|
|
|
|
|
return os.Getenv("USERNAME")
|
|
|
|
}
|