diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-02 17:45:39 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-02 17:45:39 +0100 |
| commit | a1866254f9afcae57f863ec8b6ca964ab36f0673 (patch) | |
| tree | 28c754788d28365964be8ca6d4ff67d80154e530 | |
| parent | b7fc80b5f5104c3f2c0174b5af5b79087923e2be (diff) | |
sitemap.uppxml: uses find instead of wildcard expansion to find html files inside
subfolders
| -rw-r--r-- | http/share/sitemap.uppxml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/share/sitemap.uppxml b/http/share/sitemap.uppxml index ba5ee48..bfcf8d8 100644 --- a/http/share/sitemap.uppxml +++ b/http/share/sitemap.uppxml @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='UTF-8'?> <urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'> #! -for f in ${OUT}/*.html +for f in $(find "${OUT}" -name "*.html") do #! <url> |
