From 026c462e7d3a92eaa00de378fab3f31157c8e0f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Cohen=20Arazi?= Date: Thu, 18 Sep 2025 11:02:55 -0300 Subject: [PATCH] Bug 40838: Add generated bookings CSS assets to gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To test: 1. Run: $ ktd --shell k$ yarn build 2. Run: k$ git status ``` On branch main Your branch is up to date with 'origin/main'. Untracked files: (use "git add ..." to include in what will be committed) .vstags koha-tmpl/intranet-tmpl/prog/css/bookings-rtl.css koha-tmpl/intranet-tmpl/prog/css/bookings.css nothing added to commit but untracked files present (use "git add" to track) ``` => FAIL: Bookings-related generated CSS show as untracked for git. 2. Apply this patch 3. Repeat 2 => SUCCESS: No untracked files 4. Sign off :-D Signed-off-by: Tomás Cohen Arazi --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6262c4f624..82402ae9cf 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ koha-tmpl/opac-tmpl/bootstrap/css/sco.css koha-tmpl/opac-tmpl/bootstrap/css/sco-rtl.css koha-tmpl/intranet-tmpl/prog/css/maps/ +koha-tmpl/intranet-tmpl/prog/css/bookings.css +koha-tmpl/intranet-tmpl/prog/css/bookings-rtl.css koha-tmpl/intranet-tmpl/prog/css/calendar.css koha-tmpl/intranet-tmpl/prog/css/calendar-rtl.css koha-tmpl/intranet-tmpl/prog/css/holds.css -- 2.51.0