hugolib: gitinfo: use contentDir not workingDir
authorNikita Shubin <nikita.shubin@maquefel.me>
Fri, 22 Apr 2022 10:54:54 +0000 (13:54 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Fri, 22 Apr 2022 10:54:54 +0000 (13:54 +0300)
gitinfo searches workingDir by default and that's not what we want, if
we specify content directory during build, we want .git infromation from
that directory also.

hugolib/gitinfo.go

index 17717ed529f8c06c63438108752db68e85fba573..375b031ae594e5b7beea77be78fc4941154ccd25 100644 (file)
@@ -35,9 +35,9 @@ func (g *gitInfo) forPage(p page.Page) *gitmap.GitInfo {
 }
 
 func newGitInfo(cfg config.Provider) (*gitInfo, error) {
-       workingDir := cfg.GetString("workingDir")
+       contentDir := cfg.GetString("contentDir")
 
-       gitRepo, err := gitmap.Map(workingDir, "")
+       gitRepo, err := gitmap.Map(contentDir, "")
        if err != nil {
                return nil, err
        }