Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
50 lines
921 B
Go
50 lines
921 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package timeutil
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"sync"
|
|
"time"
|
|
|
|
"forgejo.org/modules/log"
|
|
)
|
|
|
|
var (
|
|
executablModTime = time.Now()
|
|
executablModTimeOnce sync.Once
|
|
)
|
|
|
|
// GetExecutableModTime get executable file modified time of current process.
|
|
func GetExecutableModTime() time.Time {
|
|
executablModTimeOnce.Do(func() {
|
|
exePath, err := os.Executable()
|
|
if err != nil {
|
|
log.Error("os.Executable: %v", err)
|
|
return
|
|
}
|
|
|
|
exePath, err = filepath.Abs(exePath)
|
|
if err != nil {
|
|
log.Error("filepath.Abs: %v", err)
|
|
return
|
|
}
|
|
|
|
exePath, err = filepath.EvalSymlinks(exePath)
|
|
if err != nil {
|
|
log.Error("filepath.EvalSymlinks: %v", err)
|
|
return
|
|
}
|
|
|
|
st, err := os.Stat(exePath)
|
|
if err != nil {
|
|
log.Error("os.Stat: %v", err)
|
|
return
|
|
}
|
|
|
|
executablModTime = st.ModTime()
|
|
})
|
|
return executablModTime
|
|
}
|