mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Mirror fix
This commit is contained in:
parent
e95be2cb3e
commit
be69e74bc0
1 changed files with 3 additions and 0 deletions
|
@ -274,6 +274,9 @@ func NewConfigContext() {
|
|||
|
||||
RunUser = Cfg.MustValue("", "RUN_USER")
|
||||
curUser := os.Getenv("USERNAME")
|
||||
if len(curUser) == 0 {
|
||||
curUser = os.Getenv("whoami")
|
||||
}
|
||||
if RunUser != curUser {
|
||||
fmt.Printf("Expect user(%s) but current user is: %s\n", RunUser, curUser)
|
||||
os.Exit(2)
|
||||
|
|
Loading…
Reference in a new issue