Skip to content

Commit

Permalink
Fix i18n rebuild regression
Browse files Browse the repository at this point in the history
Fixes #12039
  • Loading branch information
bep committed Feb 16, 2024
1 parent 639073e commit f1491c9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hugolib/hugo_sites_build.go
Expand Up @@ -790,7 +790,9 @@ func (h *HugoSites) processPartial(ctx context.Context, l logg.LevelLogger, conf
case files.ComponentFolderI18n:
logger.Println("i18n changed", pathInfo.Path())
i18nChanged = true
changes = append(changes, pathInfo)
// It's hard to determine the exact change set of this,
// so be very coarse grained for now.
changes = append(changes, identity.GenghisKhan)
default:
panic(fmt.Sprintf("unknown component: %q", pathInfo.Component()))
}
Expand Down
22 changes: 22 additions & 0 deletions hugolib/rebuild_test.go
Expand Up @@ -1149,6 +1149,28 @@ Single.
b.AssertFileContent("public/index.html", "Home.", "<style>body {\n\tbackground: blue;\n}</style>")
}

func TestRebuildI18n(t *testing.T) {
t.Parallel()

files := `
-- hugo.toml --
baseURL = "https://example.com"
disableLiveReload = true
-- i18n/en.toml --
hello = "Hello"
-- layouts/index.html --
Hello: {{ i18n "hello" }}
`

b := TestRunning(t, files)

b.AssertFileContent("public/index.html", "Hello: Hello")

b.EditFileReplaceAll("i18n/en.toml", "Hello", "Hugo").Build()

b.AssertFileContent("public/index.html", "Hello: Hugo")
}

func TestRebuildVariationsAssetsSassImport(t *testing.T) {
if !htesting.IsCI() {
t.Skip("skip CI only")
Expand Down

0 comments on commit f1491c9

Please sign in to comment.