jekyll / jekyll-sitemap

Jekyll plugin to silently generate a sitemaps.org compliant sitemap for your Jekyll site
http://rubygems.org/gems/jekyll-sitemap
MIT License
961 stars 135 forks source link

forced refresh #232

Closed NICrichard closed 5 years ago

NICrichard commented 5 years ago

Is there a way to have the sitemap rebuilt from scratch whenever the jekyll build command is issued (i.e., a forced refresh)?

DirtyF commented 5 years ago

bundle exec jekyll clean && bundle exec jekyll build will remove destination folder and trigger a new build.

bundle exec jekyll build --watch will activate auto-generation

NICrichard commented 5 years ago

duh - didn't even think that route; thanks! :)