mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
a191b38ac8
Fixes #11061
29 lines
No EOL
556 B
Text
29 lines
No EOL
556 B
Text
# Test the hugo command.
|
|
|
|
# See https://github.com/rogpeppe/go-internal/issues/228
|
|
[windows] skip
|
|
|
|
hugo -w &
|
|
|
|
sleep 3
|
|
grep 'P1start' public/p1/index.html
|
|
|
|
replace content/p1.md 'P1start' 'P1end'
|
|
sleep 2
|
|
grep 'P1end' public/p1/index.html
|
|
! grep 'livereload' public/p1/index.html
|
|
|
|
stop
|
|
|
|
-- hugo.toml --
|
|
baseURL = "http://example.org/"
|
|
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
|
-- layouts/index.html --
|
|
Home.
|
|
-- layouts/_default/single.html --
|
|
Title: {{ .Title }}| {{ .Content }}
|
|
-- content/p1.md --
|
|
---
|
|
title: "P1"
|
|
---
|
|
P1start |