mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 23:38:53 +00:00
2ffaf1fc1e
Related to #15174
27 lines
402 B
Plaintext
27 lines
402 B
Plaintext
# A deleted static file should be removed from the publish dir.
|
|
|
|
hugo server &
|
|
|
|
waitServer
|
|
|
|
exists public/static.txt
|
|
|
|
rm static/static.txt
|
|
|
|
sleep 2
|
|
|
|
! exists public/static.txt
|
|
|
|
stopServer
|
|
! stderr .
|
|
|
|
-- hugo.toml --
|
|
title = "Hugo Server Test"
|
|
baseURL = "https://example.org/"
|
|
disableKinds = ["taxonomy", "term", "sitemap"]
|
|
-- layouts/all.html --
|
|
All.
|
|
-- content/p1.md --
|
|
-- static/static.txt --
|
|
static
|