This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch docs/logging-page-refresh in repository https://gitbox.apache.org/repos/asf/struts-site.git
commit 13042687dbd7c78a9cd78d0d221292df897c28a7 Author: Lukasz Lenart <[email protected]> AuthorDate: Mon Aug 3 15:21:32 2026 +0200 build: ignore vendor/ so bundler's default install path stays out of git `bundle install --path vendor/bundle` — the standard way to install this site's gems without touching the system gem dir — drops ~29 gems into vendor/, which then shows up as untracked on every branch. .bundle and Gemfile.lock are already ignored; vendor/ was the missing one. Co-Authored-By: Claude Opus 5 <[email protected]> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2899b5fa9..a339f00a3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ content .java-version target .bundle +vendor/ .jekyll-metadata .jekyll-cache _site/
