projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41cc4e4
)
hugolib: gitinfo: use contentDir not workingDir
author
Nikita Shubin
<nikita.shubin@maquefel.me>
Fri, 22 Apr 2022 10:54:54 +0000
(13:54 +0300)
committer
Nikita 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
patch
|
blob
|
history
diff --git
a/hugolib/gitinfo.go
b/hugolib/gitinfo.go
index 17717ed529f8c06c63438108752db68e85fba573..375b031ae594e5b7beea77be78fc4941154ccd25 100644
(file)
--- a/
hugolib/gitinfo.go
+++ b/
hugolib/gitinfo.go
@@
-35,9
+35,9
@@
func (g *gitInfo) forPage(p page.Page) *gitmap.GitInfo {
}
func newGitInfo(cfg config.Provider) (*gitInfo, error) {
-
workingDir := cfg.GetString("working
Dir")
+
contentDir := cfg.GetString("content
Dir")
- gitRepo, err := gitmap.Map(
working
Dir, "")
+ gitRepo, err := gitmap.Map(
content
Dir, "")
if err != nil {
return nil, err
}