Skip to content

Commit

Permalink
maint: fix method pluralization after ruby upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Yury V. Zaytsev <[email protected]>
  • Loading branch information
zyv committed Dec 25, 2024
1 parent c4af7f0 commit 8c8f205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maint/htagsfix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8c8f205

Please sign in to comment.