From 8c8f20533a755acc082ca90678df0e342045e20c Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Wed, 25 Dec 2024 09:03:13 +0300 Subject: [PATCH] maint: fix method pluralization after ruby upgrade Signed-off-by: Yury V. Zaytsev --- maint/htagsfix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maint/htagsfix b/maint/htagsfix index c0db95e204..ca672bb7ab 100755 --- a/maint/htagsfix +++ b/maint/htagsfix @@ -157,9 +157,9 @@ def better_css(css_path) end def main() - if not File.exists?($base + '/help.html') then + if not File.exist?($base + '/help.html') then $base += '/HTML' - if not File.exists?($base + '/help.html') then + if not File.exist?($base + '/help.html') then puts "Error: This doesn't look like htags' output directory." exit(1) end