mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-25 11:22:16 +00:00
Support git.PATH entry in app.ini (#6772)
This commit is contained in:
parent
8d9d6aa903
commit
f88aa1d215
4 changed files with 18 additions and 4 deletions
|
@ -77,20 +77,27 @@ func BinVersion() (string, error) {
|
|||
return gitVersion, nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
// SetExecutablePath changes the path of git executable and checks the file permission and version.
|
||||
func SetExecutablePath(path string) error {
|
||||
// If path is empty, we use the default value of GitExecutable "git" to search for the location of git.
|
||||
if path != "" {
|
||||
GitExecutable = path
|
||||
}
|
||||
absPath, err := exec.LookPath(GitExecutable)
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("Git not found: %v", err))
|
||||
return fmt.Errorf("Git not found: %v", err)
|
||||
}
|
||||
GitExecutable = absPath
|
||||
|
||||
gitVersion, err := BinVersion()
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("Git version missing: %v", err))
|
||||
return fmt.Errorf("Git version missing: %v", err)
|
||||
}
|
||||
if version.Compare(gitVersion, GitVersionRequired, "<") {
|
||||
panic(fmt.Sprintf("Git version not supported. Requires version > %v", GitVersionRequired))
|
||||
return fmt.Errorf("Git version not supported. Requires version > %v", GitVersionRequired)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// Init initializes git module
|
||||
|
|
|
@ -16,6 +16,7 @@ import (
|
|||
var (
|
||||
// Git settings
|
||||
Git = struct {
|
||||
Path string
|
||||
DisableDiffHighlight bool
|
||||
MaxGitDiffLines int
|
||||
MaxGitDiffLineCharacters int
|
||||
|
@ -59,6 +60,9 @@ func newGit() {
|
|||
if err := Cfg.Section("git").MapTo(&Git); err != nil {
|
||||
log.Fatal("Failed to map Git settings: %v", err)
|
||||
}
|
||||
if err := git.SetExecutablePath(Git.Path); err != nil {
|
||||
log.Fatal("Failed to initialize Git settings", err)
|
||||
}
|
||||
git.DefaultCommandExecutionTimeout = time.Duration(Git.Timeout.Default) * time.Second
|
||||
|
||||
binVersion, err := git.BinVersion()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue