From a7fc468817c9cf553f383e728b555b57b647b146 Mon Sep 17 00:00:00 2001 From: "Konstantin Kirik (snegovick)" Date: Tue, 9 Dec 2025 10:48:24 +0300 Subject: Skip INDEX files in mksectionindex script --- man/lib/mksectionindex.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'man/lib/mksectionindex.py') diff --git a/man/lib/mksectionindex.py b/man/lib/mksectionindex.py index f9b3bf75..e1a84926 100644 --- a/man/lib/mksectionindex.py +++ b/man/lib/mksectionindex.py @@ -30,6 +30,8 @@ if __name__ == "__main__": """ for f in os.listdir(): + if f == 'INDEX': + continue index_file += f"{f}\n" index_file += "" -- cgit v1.2.3